System.Linq.TypeHelper.GetStaticMethods C# (CSharp) Метод

GetStaticMethods() статический приватный Метод

static private GetStaticMethods ( this type ) : IEnumerable
type this
Результат IEnumerable
        internal static IEnumerable<MethodInfo> GetStaticMethods(this Type type)
        {
            return type.GetRuntimeMethods().Where(m => m.IsStatic);
        }
    }