CollectTypes(Type, CollectTypeFlags) |
Collects the types around the specified type (“around”=in the same namespace)
|
|
CollectTypes(CollectTypeFlags, Assembly, Type) |
Collects the types from assembly
|
|
describeTypes |
Describes the types.
|
|
GetBaseTypeList |
Returns list with all types base types, in order of inherence
|
|
getCleanTypeFullName |
Gets the clean full name the type.
|
|
GetDefaultValue(Type) |
Returns default value for type. It may be new instance if it is class type. (same as: default(typename))
|
|
Better to use: default(typename), since you know the type at design-time
|
||
getTypeFromName |
Gets the name of the type from.
|
|
getTypePathFilter |
Gets the type path filter.
|
|
hasParameterlessConstructor |
Determines whether Type has parameterless constructor
|
|
isImbSerializableSimple |
Determines whether is Type a simple (String, number, enum…) one that can be serialized ToString() way easy.
|
|
TypeListToDictionary |
Converts a list of Type to Dictionary having [!:Type.Name] as key
|