Gets the Type with the specified name.
Gets the Type with the specified name, performing a case-sensitive search and throwing an exception on error while loading the Type.
[Visual Basic] Overloads Public Shared Function GetType(String) As Type
[C#] public static Type GetType(String);
[C++] public: static Type* GetType(String*);
[JScript] public static function GetType(String) : Type;
Gets the Type with the specified name, performing a case-sensitive search and specifying whether to throw an exception on error while loading the Type.
[Visual Basic] Overloads Public Shared Function GetType(String, Boolean) As Type
[C#] public static Type GetType(String, bool);
[C++] public: static Type* GetType(String*, bool);
[JScript] public static function GetType(String, Boolean) : Type;
Gets the Type with the specified name, specifying whether to perform a case-sensitive search and whether to throw an exception on error while loading the Type.
[Visual Basic] Overloads Public Shared Function GetType(String, Boolean, Boolean) As Type
[C#] public static Type GetType(String, bool, bool);
[C++] public: static Type* GetType(String*, bool, bool);
[JScript] public static function GetType(String, Boolean, Boolean) : Type;