Use reflection to find the base type. If such type do not exist, null is returned

Namespace: Emgu.Util
Assembly: Emgu.Util (in Emgu.Util.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public 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
)

Parameters

currentType
Type
The type to search from
baseclassName
String
The name of the base class to search

Return Value

The base type

See Also