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 |
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. |