Click or drag to resize

AssembliesGetTypeFromName Method

Tries to find/identify a Type by its name

Namespace:  Cauldron.Reflection
Assembly:  Cauldron.Activator (in Cauldron.Activator.dll) Version: 3.2.0.1 (3.2.0.1)
Syntax
C#
public static Type GetTypeFromName(
	string typeName
)

Parameters

typeName
Type: SystemString
The name of the Type

Return Value

Type: Type
The Type that is defined by the parameter typeName
Exceptions
ExceptionCondition
ArgumentNullException The typeName parameter is null
ArgumentException The typeName parameter is an empty string
See Also