CsvRow.SetCellValue method

Version 0.0.2
.NET Framework 4.7
Namespace Skybrud.Csv
Assembly Skybrud.Csv.dll

SetCellValue(int, object)

Sets the value of the cell at the specified index.

public CsvRow SetCellValue(int index, object value)

Parameters

index int

The index of the cell.

value Object

The new value of the cell.

Returns

The original instance of CsvRow.

SetCellValue(string, object)

Set the value of the cell with the specified columnName.

public CsvRow SetCellValue(string columnName, object value)

Parameters

columnName String

The name of the column.

value Object

The new value of the cell.

Returns

The original instance of CsvRow.