Method csvTable.InsertRow(+ 1 overload)
Overload
Inserts new row and sets its fields.
public void InsertRow(int index, params string[] fields)
Parameters
index (int)
0-based row index. If negative or equal to csvTable.RowCount, adds to the end. |
fields (string[])
Row fields. Can be a string array or multiple string arguments. Does not copy the array, unless its Length is less than csvTable.ColumnCount. Adds new columns if array Length (or the number of string arguments) is greater than ColumnCount. |
Exceptions
Overload(top)
Inserts new empty row.
public void InsertRow(int index)
Parameters
index (int)
0-based row index. If negative or equal to csvTable.RowCount, adds to the end. |