System.Linq.TypeHelper.GetStaticMethods C# (CSharp) Méthode

GetStaticMethods() static private méthode

static private GetStaticMethods ( this type ) : IEnumerable
type this
Résultat IEnumerable
        internal static IEnumerable<MethodInfo> GetStaticMethods(this Type type)
        {
            return type.GetRuntimeMethods().Where(m => m.IsStatic);
        }
    }