ReflectionExtensions.GetMethods C# (CSharp) Method

GetMethods() public static method

public static GetMethods ( this type ) : IEnumerable
type this
return IEnumerable
    public static IEnumerable<MethodInfo> GetMethods(this Type type)
    {
        return GetMethods(type, (BindingFlags)0x0);
    }

Same methods

ReflectionExtensions::GetMethods ( this type, BindingFlags, flags ) : IEnumerable