CsvRecordItem(String) Property
Gets or sets the value associated with the specified column name in
the CSV file.
Namespace: FolkerKinzel.CsvToolsAssembly: FolkerKinzel.CsvTools (in FolkerKinzel.CsvTools.dll) Version: 2.0.2+e1e095fbd3614788c84dad3204b1e88c20f89802
public ReadOnlyMemory<char> this[
string columnName
] { get; set; }
Public Default Property Item (
columnName As String
) As ReadOnlyMemory(Of Char)
Get
Set
public:
property ReadOnlyMemory<wchar_t> default[String^ columnName] {
ReadOnlyMemory<wchar_t> get (String^ columnName);
void set (String^ columnName, ReadOnlyMemory<wchar_t> value);
}
member Item : ReadOnlyMemory<char> with get, set
- columnName String
- The column name of the CSV file.
ReadOnlyMemoryCharThe value associated with the specified column name.