.NET/Link API Version 1.7 USE FRAMES

TypeLoader.GetType Method (String, Boolean)

Searches for the type among all loaded assemblies.

[Visual Basic]
Overloads Public Shared Function GetType( _
   ByVal typeName As String, _
   ByVal throwOnError As Boolean _
) As Type
[C#]
public static Type GetType(
   string typeName,
   bool throwOnError
);

Parameters

typeName
throwOnError

Remarks

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.

See Also

TypeLoader Class | Wolfram.NETLink Namespace | TypeLoader.GetType Overload List