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

Cast_TResult_1() public static method

public static Cast_TResult_1 ( Type TResult ) : MethodInfo
TResult Type
return System.Reflection.MethodInfo
        public static MethodInfo Cast_TResult_1(Type TResult) =>
             (s_Cast_TResult_1 ??
             (s_Cast_TResult_1 = new Func<IQueryable, IQueryable<object>>(Queryable.Cast<object>).GetMethodInfo().GetGenericMethodDefinition()))
              .MakeGenericMethod(TResult);
CachedReflectionInfo