Ejemplo n.º 1
0
        public static FickleType Define(string name, bool byRef = false, bool isPrimitive = false, bool isInterface = false)
        {
            FickleType retval;

            if (!FickleTypeByName.TryGetValue(name, out retval))
            {
                retval = new FickleType(name, byRef, isPrimitive, isInterface);
            }

            return(retval);
        }
Ejemplo n.º 2
0
        public static FickleType Define(string name, bool byRef = false, bool isPrimitive = false, bool isInterface = false)
        {
            FickleType retval;

            if (!FickleTypeByName.TryGetValue(name, out retval))
            {
                retval = new FickleType(name, byRef, isPrimitive, isInterface);
            }

            return retval;
        }