Beispiel #1
0
 public TypeDescriptor(TypeDescriptor baseDescriptor, int fixedTSize, FactoryTypeIdentifier tid, Type realType)
 {
     _base = baseDescriptor;
     if (_base != null)
     {
         _arrays.AddRange(_base.Arrays);
     }
     _fixedPartLenght = fixedTSize;
     _classIndex      = ClassNumber - 1;
     _tid             = tid;
     VirtualObjectFactory.RecordType(realType, _tid);
 }