Retrieve the Type definitions from all types in the loaded assemblies
from app domain
that are derived from the given type.
The given type itself is excluded.
Namespace: Cartella.SupportAssembly: CartellaBase (in CartellaBase.dll) Version: 4.1.0.171 (4.1.0.171)
Syntax
C# |
---|
public static Type[] GetDerivedTypesFromAppDomain(
Type baseType
) |
Visual Basic |
---|
Public Shared Function GetDerivedTypesFromAppDomain ( _
baseType As Type _
) As Type() |
Visual C++ |
---|
public:
static array<Type^>^ GetDerivedTypesFromAppDomain(
Type^ baseType
) |
Parameters
- baseType
- Type: System..::..Type
Base type from which retrieved types are derived
Return Value
Array of derived types defined in the assemblies in app domain.
See Also