TypeLoaderGetType(String, Boolean) Method

Searches for the type among all loaded assemblies.

Definition

Namespace: Wolfram.NETLink
Assembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
C#
public static Type GetType(
	string typeName,
	bool throwOnError
)

Parameters

typeName  String
throwOnError  Boolean

Return Value

Type

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