System.ObjectExtentions.Properties C# (CSharp) Method

Properties() public static method

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