public ExportRow(ExportRow row) { if (row != null) { this.RowType = row.RowType; foreach (object text in row.CellList) { this.CellList.Add(text.ToString()); } } }
public ExportRow(ExportRowType rowType) { this.RowType = rowType; }