System.ObjectExtentions.Methods C# (CSharp) Method

Methods() public static method

All methods for this object
public static Methods ( this foo ) : List
foo this this
return List
        public static List<MethodInfo> Methods(this object foo)
        {
            return foo.GetType().Methods();
        }