System.Linq.CachedReflectionInfo.Zip_TFirst_TSecond_TResult_3 C# (CSharp) Method

Zip_TFirst_TSecond_TResult_3() public static method

public static Zip_TFirst_TSecond_TResult_3 ( Type TFirst, Type TSecond, Type TResult ) : MethodInfo
TFirst Type
TSecond Type
TResult Type
return System.Reflection.MethodInfo
        public static MethodInfo Zip_TFirst_TSecond_TResult_3(Type TFirst, Type TSecond, Type TResult) =>
             (s_Zip_TFirst_TSecond_TResult_3 ??
             (s_Zip_TFirst_TSecond_TResult_3 = new Func<IQueryable<object>, IEnumerable<object>, Expression<Func<object, object, object>>, IQueryable<object>>(Queryable.Zip).GetMethodInfo().GetGenericMethodDefinition()))
              .MakeGenericMethod(TFirst, TSecond, TResult);
CachedReflectionInfo