ToolboxGetBaseType Method |
http://www.emgu.com
Use reflection to find the base type. If such type do not exist, null is returned
Namespace:
Emgu.Util
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
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