Get a specific type from given hard drive location, searching through all DLL files, by default including the plugins folder.

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

Syntax

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

Parameters

location
Type: System..::..String
Hard Drive Path
typeName
Type: System..::..String
Full name of the type to be located

Return Value

Type with given full name, or null if doesn't exist in location

See Also