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.5+a1df9eb1ff3c1305310d778343390475b5f50c0f
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.