示例#1
0
 public MultiCell(MultiCell <R, T> cell)
     : base(cell.Length)
 {
     this.ctor            = cell.ctor;
     this.defaultCellSize = cell.defaultCellSize;
     this.lastCell        = cell.lastCell;
     for (int i = 0; i < cell.Length; i++)
     {
         this.backingStore[i] = (R)cell.backingStore[i].Clone();
     }
 }
示例#2
0
 public MultiCellEnumerator(MultiCell <R, T> mc)
 {
     backingElements = mc.backingStore;
     count           = mc.CellCount;
     bIndex          = -1;
 }