The TypeExtensions type exposes the following members.
|
Name |
Description |
|
Implements(Type, Type)
|
Returns true if type implements/inherits moreGeneralType.
typeof(object[]).Implements(typeof(IEnumerable)) --> true
|
|
Implements<(Of <<'(T>)>>)(Type)
|
Returns true if type implements/inherits T.
typeof(object[]).Implements<IEnumerable>() --> true
|