public CCDCells(CCDCells ccdCells) { int len = ccdCells.Count; this.Clear(); for (int i = 0; i < len; i++) { this.Add(new Cell(ccdCells[i].m, ccdCells[i].zone)); } inParams = ccdCells.inParams; }
public LCCDCells(CCDCells ccdCells) : base(ccdCells) { }