public void AddRow(params int[] items) { TypelessDataRow row = new TypelessDataRow(items) { Table = this }; this._rows.Add(row); this.RowCount++; }
public void AddRow(TypelessDataRow row) { if (row is null) { throw new ArgumentNullException(nameof(row)); } row.Table = this; this._rows.Add(row); this.RowCount++; }