Method GetTypeByName
GetTypeByName(string, bool)
Gets the Type object with the specified name searching it through all assemblies of the current domain.
public static Type? GetTypeByName(string name, bool reverse = false)
Parameters
name
stringName of the type in the same format as passed to GetType(string).
reverse
boolif
true
gives priority to most recently loaded types. Optional. Default isfalse
.