AjTalk.TypeUtilities.GetType C# (CSharp) Метод

GetType() публичный статический Метод

public static GetType ( string name ) : Type
name string
Результат 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));
        }