コード例 #1
0
 public void AppendTo(ref ItemStructList <T> destinationList)
 {
     for (int i = 0; i < Count; i++)
     {
         destinationList.Add(ref List[i]);
     }
 }
コード例 #2
0
 public DTypeMap(int entryCount)
 {
     // Constant Time Lookup entries (array size)
     _entryCount   = entryCount;
     _entries      = new object[_entryCount];
     _activeDTypes = new ItemStructList <DependencyObjectType>(128);
 }