internal Row(Table table, IEnumerable <Cell> cells, Int64?rowId = null) : this(table, rowId) { Cells = new CellCollection(this, cells); Cells.ForEach(cell => cell.LinkToRow(this)); }
public Row(IEnumerable <Cell> cells) { Cells = new CellCollection(this, cells); Cells.ForEach(cell => cell.LinkToRow(this)); }