System.ObjectExtentions.Methods C# (CSharp) 메소드

Methods() 공개 정적인 메소드

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