System.Linq.TypeHelper.GetStaticMethods C# (CSharp) Method

GetStaticMethods() static private method

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