Method ConstructFromAssemblyQualifiedTypeName
ConstructFromAssemblyQualifiedTypeName<T>(string)
Construct instance of type resolved from assembly qualified type name, and return it as T.
Resolved type must have an implicit, default or registered constructor, and not have ObsoleteAttribute.
Declaration
public static T ConstructFromAssemblyQualifiedTypeName<T>(string assemblyQualifiedTypeName)
Parameters
| Type | Name | Description |
|---|---|---|
| string | assemblyQualifiedTypeName | The assembly qualified type name. |
Returns
| Type | Description |
|---|---|
| T | New instance of type resolved from assembly qualified type name. |
Type Parameters
| Name | Description |
|---|---|
| T | The returned type. |