Method csvTable.Set(+ 6 overloads)
Overload
Converts a number to string and sets a field.
public void Set(Index row, int column, int value)
Parameters
row (Index)
0-based row index. Can be from the end; for example |
column (int)
0-based column index. If >= csvTable.ColumnCount and < 1000, sets |
value (int) |
Exceptions
ArgumentOutOfRangeException
Invalid row or column. |
Overload(next)
Converts a number to hex string and sets a field.
public void Set(Index row, int column, uint value)
Parameters
row (Index)
0-based row index. Can be from the end; for example |
column (int)
0-based column index. If >= csvTable.ColumnCount and < 1000, sets |
value (uint) |
Exceptions
ArgumentOutOfRangeException
Invalid row or column. |
Overload(next)
Converts a number to string and sets a field.
public void Set(Index row, int column, long value)
Parameters
row (Index)
0-based row index. Can be from the end; for example |
column (int)
0-based column index. If >= csvTable.ColumnCount and < 1000, sets |
value (long) |
Exceptions
ArgumentOutOfRangeException
Invalid row or column. |
Overload(next)
Converts a number to hex string and sets a field.
public void Set(Index row, int column, ulong value)
Parameters
row (Index)
0-based row index. Can be from the end; for example |
column (int)
0-based column index. If >= csvTable.ColumnCount and < 1000, sets |
value (ulong) |
Exceptions
ArgumentOutOfRangeException
Invalid row or column. |
Overload(next)
Converts a number to string and sets a field.
public void Set(Index row, int column, double value)
Parameters
row (Index)
0-based row index. Can be from the end; for example |
column (int)
0-based column index. If >= csvTable.ColumnCount and < 1000, sets |
value (double) |
Exceptions
ArgumentOutOfRangeException
Invalid row or column. |
Overload(next)
Converts a number to string and sets a field.
public void Set(Index row, int column, float value)
Parameters
row (Index)
0-based row index. Can be from the end; for example |
column (int)
0-based column index. If >= csvTable.ColumnCount and < 1000, sets |
value (float) |
Exceptions
ArgumentOutOfRangeException
Invalid row or column. |
Overload(top)
Converts a bool to string "true"
or "false"
and sets a field.
public void Set(Index row, int column, bool value)
Parameters
row (Index)
0-based row index. Can be from the end; for example |
column (int)
0-based column index. If >= csvTable.ColumnCount and < 1000, sets |
value (bool) |
Exceptions
ArgumentOutOfRangeException
Invalid row or column. |