Declaration
public static IEnumerable<PropertyInfo> GetAllProperties(
this Type type
)Summary
Returns all properties contained in the specified type, including private properties inherited from base
classes.
Parameters
| this Type | type |
The type to return all properties of. |
Returns
An
IEnumerable<T> containing all properties contained in this type, including
private properties inherited from base classes.