System.ObjectExtentions.Properties C# (CSharp) Méthode

Properties() public static méthode

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