UtilReflectionGetAllDerivedTypesT Method
Gets all the types that inherits from the source Type within the Assembly
in which the source Type is defined.
Namespace: DevCase.Core.Diagnostics.Assembly.ReflectionAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static IEnumerable<Type> GetAllDerivedTypes<T>()
Public Shared Function GetAllDerivedTypes(Of T) As IEnumerable(Of Type)
Dim returnValue As IEnumerable(Of Type)
returnValue = UtilReflection.GetAllDerivedTypes()
public:
generic<typename T>
static IEnumerable<Type^>^ GetAllDerivedTypes()
static member GetAllDerivedTypes : unit -> IEnumerable<Type>
No code example is currently available or this language may not be supported.
- T
-
The source Type.
IEnumerableType
All the types that inherits from the source
Type within the loaded assembly in which the source
Type is defined;
or
if there is no
Type that inherits from the source
Type.
This is a code example.
No code example is currently available or this language may not be supported.
Dim derivedTypes As IEnumerable(Of Type) = GetAllDerivedTypes(Of Control)()
Console.WriteLine(String.Join(Environment.NewLine, derivedTypes))
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.