AjTalk.TypeUtilities.GetType C# (CSharp) Méthode

GetType() public static méthode

public static GetType ( string name ) : Type
name string
Résultat System.Type
        public static Type GetType(string name)
        {
            Type type = AsType(name);

            if (type != null)
                return type;

            throw new InvalidOperationException(string.Format("Unknown type '{0}'", name));
        }