System.Reflection.Assembly.Assembly.GetType C# (CSharp) Method

GetType() public method

public GetType ( string name, bool throwOnError, bool ignoreCase ) : Type
name string
throwOnError bool
ignoreCase bool
return Type
		public Type GetType (string name, bool throwOnError, bool ignoreCase)
		{
			if (name == null)
				throw new ArgumentNullException (name);
			if (name.Length == 0)
			throw new ArgumentException ("name", "Name cannot be empty");

			return InternalGetType (null, name, throwOnError, ignoreCase);
		}

Same methods

Assembly.Assembly::GetType ( ) : Type
Assembly.Assembly::GetType ( String name ) : Type
Assembly.Assembly::GetType ( String name, Boolean throwOnError ) : Type