Nettiers.AdventureWorks.Entities.EntityUtil.GetType C# (CSharp) Method

GetType() public static method

Gets the System.Type with the specified name.
public static GetType ( String typeName ) : Type
typeName String The name of the type to get.
return System.Type
		public static Type GetType(String typeName)
		{
			Type type = null;

			if ( !String.IsNullOrEmpty(typeName) )
			{
				type = Type.GetType(typeName, true);
			}

			return type;
		}