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

Properties() 공개 정적인 메소드

All properties for this object
public static Properties ( this foo ) : List
foo this this
리턴 List
        public static List<PropertyInfo> Properties(this object foo)
        {
            return foo.GetType().Properties();
        }