CsvRecordItem(Int32) Property
Gets or sets the value of the column in the CSV file that is at the
specified index.
Namespace: FolkerKinzel.CsvToolsAssembly: FolkerKinzel.CsvTools (in FolkerKinzel.CsvTools.dll) Version: 2.0.1+2345335399184346d9b2cc992ed5c814406052c1
public ReadOnlyMemory<char> this[
int index
] { get; set; }
Public Default Property Item (
index As Integer
) As ReadOnlyMemory(Of Char)
Get
Set
public:
property ReadOnlyMemory<wchar_t> default[int index] {
ReadOnlyMemory<wchar_t> get (int index);
void set (int index, ReadOnlyMemory<wchar_t> value);
}
member Item : ReadOnlyMemory<char> with get, set
- index Int32
- The zero-based index of the column in the CSV file whose
value is being obtained or set.
ReadOnlyMemoryCharThe item at the specified index.