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

ThenBy_TSource_TKey_2() public static method

public static ThenBy_TSource_TKey_2 ( Type TSource, Type TKey ) : MethodInfo
TSource Type
TKey Type
return System.Reflection.MethodInfo
        public static MethodInfo ThenBy_TSource_TKey_2(Type TSource, Type TKey) =>
             (s_ThenBy_TSource_TKey_2 ??
             (s_ThenBy_TSource_TKey_2 = new Func<IOrderedQueryable<object>, Expression<Func<object, object>>, IOrderedQueryable<object>>(Queryable.ThenBy).GetMethodInfo().GetGenericMethodDefinition()))
              .MakeGenericMethod(TSource, TKey);
CachedReflectionInfo