Get a specific type from executing location. Include all DLL files in this location.

Namespace: Cartella.Support
Assembly: CartellaBase (in CartellaBase.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
public static Type GetType(
	string typeName
)
Visual Basic
Public Shared Function GetType ( _
	typeName As String _
) As Type
Visual C++
public:
static Type^ GetType(
	String^ typeName
)

Parameters

typeName
Type: System..::..String
Name of the type to get type definition for. Must be the full name.

Return Value

Type with the given full name, or null if the type doesn't exist in executing location.

See Also