Beispiel #1
0
 public static void TuneAllTypeInfos()
 {
     BasicTypeInfo.TuneAll();
     ArrayTypeInfo.TuneAll();
     ReferenceTypeInfo.TuneAll();
     PointerTypeInfo.TuneAll();
 }
Beispiel #2
0
        public static PointerTypeInfo Create(TypeInfo _underlyingType)
        {
            string _type = _underlyingType.TypeClause;

            if (typeInfos.ContainsKey(_type))
            {
                return(typeInfos[_type]);
            }
            PointerTypeInfo ti = new PointerTypeInfo(_underlyingType);

            typeInfos[_type] = ti;
            return(ti);
        }