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
)
Public Shared Function GetTypeFromAnyAssemblyVersion (
typeName As String
) As Type
public:
static Type^ GetTypeFromAnyAssemblyVersion(
String^ typeName
)
static member GetTypeFromAnyAssemblyVersion :
typeName : string -> Type
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:
TypeA
Type as decoded from
String.
See Also