CsvRow Class

Version 0.0.2
.NET Framework 4.7
Namespace Skybrud.Csv
Assembly Skybrud.Csv.dll
Visibility Public
Inheritance Object

Class representing a row in an instance of CsvFile.

public class CsvRow { }

Properties

Type Name Summary
CsvFile File

Gets a reference back to the parent CsvFile.

int Index

Gets the index of the row.

CsvCell Item

Gets the value of the first cell matching the specified columnName, or null if not found.

CsvCellList Cells

Gets a reference to the cells of the row.

Methods

Adds a new cell with the specified value.

Gets the string value of the cell at the specified index.

Gets the string value of the cell at the specified index.

Gets the string value of the cell at the specified index, and converts it using callback.

Gets the string value of the cell with the specified columnName. If multiple columns match columnName, only the value of the first cell will be returned.

Gets the string value of the cell with the specified columnName, and converts it to the type of .

Gets the string value of the cell with the specified columnName, and converts it using callback.

Sets the value of the cell at the specified index.

Set the value of the cell with the specified columnName.