TypeLoaderGetType(String, Boolean) Method
Searches for the type among all loaded assemblies.
Namespace: Wolfram.NETLinkAssembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
public static Type GetType(
string typeName,
bool throwOnError
)
Public Shared Function GetType (
typeName As String,
throwOnError As Boolean
) As Type
public:
static Type^ GetType(
String^ typeName,
bool throwOnError
)
static member GetType :
typeName : string *
throwOnError : bool -> Type
- typeName String
- throwOnError Boolean
Type
If throwOnError is true, it will always throw if the type cannot be found. Like Type.GetType(),
it can still throw in unusual circumstances even if throwOnError is false.