Method FindTypeInAssemblyByFullName
FindTypeInAssemblyByFullName(string, string)
Searches for a type by assembly simple name and its FullName. an assembly with the given simple name and returns the type with the given full name in that assembly
Declaration
public static Type FindTypeInAssemblyByFullName(string assemblyName, string typeName)
Parameters
Type | Name | Description |
---|---|---|
string | assemblyName | Simple name of the assembly (GetName()). |
string | typeName | Full name of the type to find (FullName). |
Returns
Type | Description |
---|---|
Type | The type if found, otherwise null |