Gets the System.Type with the specified name, performing a case-sensitive search. Looks for the specified assembly in the current System.AppDomain assembly list.
Declaring type: TypeHelper
Namespace: Zyan.Communication.Toolbox
Assembly: Zyan.Communication
Collapse/Expand Syntax
C#
public static Type GetType (
        string fullName,
        bool throwOnError
) 
Parameters
fullName
The assembly-qualified name of the type to get.
throwOnError
True to throw the System.TypeLoadException if the type can not be found.
Return Value
The type with the specified name. If the type is not found, the throwOnError parameter specifies whether null is returned or an exception is thrown.