Click or drag to resize

DataMemberGetTypeFromAnyAssemblyVersion Method

Load type using GetType(String), and if fails, attempt to load same type from an assembly by assembly name, without specifying assembly version or any other part of the signature

Namespace:  VelocityDb.TypeInfo
Assembly:  VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax
public static Type GetTypeFromAnyAssemblyVersion(
	string typeName
)

Parameters

typeName
Type: SystemString
The assembly-qualified name of the type to get. See System.Type.AssemblyQualifiedName. If the type is in the currently executing assembly or in Mscorlib.dll, it is sufficient to supply the type name qualified by its namespace.

Return Value

Type: Type
A Type as decoded from String.
See Also