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();
        }