ToolboxGetBaseType Method |
http://www.emgu.com
Use reflection to find the base type. If such type do not exist, null is returned
Namespace:
Emgu.TF.Util
Assembly:
Emgu.TF.Lite.World (in Emgu.TF.Lite.World.dll) Version: 1.13.1.439 (1.13.1.439)
Syntaxpublic static Type GetBaseType(
Type currentType,
string baseClassName
)
Public Shared Function GetBaseType (
currentType As Type,
baseClassName As String
) As Type
public:
static Type^ GetBaseType(
Type^ currentType,
String^ baseClassName
)
static member GetBaseType :
currentType : Type *
baseClassName : string -> Type
Parameters
- currentType
- Type: SystemType
The type to search from - baseClassName
- Type: SystemString
The name of the base class to search
Return Value
Type:
TypeThe base type
See Also