Method GetExtensionsOfClass
GetExtensionsOfClass(Type, List<Type>)
Finds all types that extend the given class type and appends them to a list If the input type is not an class type, no action is taken.
Declaration
public static void GetExtensionsOfClass(this Type type, List<Type> list)
Parameters
| Type | Name | Description |
|---|---|---|
| Type | type | The class type of whom list will be found. |
| List<Type> | list | The list to which extension types will be appended. |