Method ReadRow
ReadRow(SharedTableEntry, CsvReader)
Called when reading each row of the CSV file. Unity recommends to store the indexes of the rows you are
interested in during ReadBegin(StringTableCollection, CsvReader) and then use them to access the row using reader.GetField
.
Declaration
public abstract void ReadRow(SharedTableData.SharedTableEntry keyEntry, CsvReader reader)
Parameters
Type | Name | Description |
---|---|---|
SharedTableData.SharedTableEntry | keyEntry | The current entry being read. |
CsvReader | reader | Provides read access to the CSV file. |