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

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

public static GetType ( IContext context, string name ) : Type
context IContext
name string
Результат System.Type
        public static Type GetType(IContext context, string name)
        {
            object obj = context.GetValue(name);

            if (obj != null && obj is Type)
                return (Type)obj;

            return GetType(name);
        }

Same methods

TypeUtilities::GetType ( string name ) : Type