public sealed class CsvRecord : IEnumerable<KeyValuePair<string, ReadOnlyMemory<char>>>,
IEnumerable
Public NotInheritable Class CsvRecord
Implements IEnumerable(Of KeyValuePair(Of String, ReadOnlyMemory(Of Char))),
IEnumerable
public ref class CsvRecord sealed : IEnumerable<KeyValuePair<String^, ReadOnlyMemory<wchar_t>>>,
IEnumerable
[<SealedAttribute>]
type CsvRecord =
class
interface IEnumerable<KeyValuePair<string, ReadOnlyMemory<char>>>
interface IEnumerable
end
ColumnNames | Gets the column names. |
Count | Returns the number of columns in the CsvRecord instance. |
HasCaseSensitiveColumnNames | Gets a value indicating whether the ColumnNames are treated case-sensitive. |
IsEmpty | Gets whether or not the instance contains usable data. |
ItemInt32 | Gets or sets the value of the column in the CSV file that is at the specified index. |
ItemString | Gets or sets the value associated with the specified column name in the CSV file. |
Values | Gets the array of data stored in CsvRecord. |
Clear | Sets all data fields of CsvRecord to default. |
ContainsColumn | Determines whether the CsvRecord object contains a column with the specified column name. |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetEnumerator | Returns an IEnumerator<KeyValuePair<string, ReadOnlyMemory<Char>>> to iterate over the CsvRecord object. The KeyValuePair<string, ReadOnlyMemory<Char>> contains the column name as Key and the content of the column as Value. |
GetHashCode | Serves as the default hash function. (Inherited from Object) |
GetType | Gets the Type of the current instance. (Inherited from Object) |
IndexOfColumn | Returns the zero-based index of the column in the CSV file, that has the specified column name, or -1, if columnName is not one of the column names in the CSV file. |
ToString | Returns a string that represents the current object. (Overrides ObjectToString) |
TryGetValue | Tries to get the value associated with the specified column name in the CSV file. |
FillWith | Fills record with the items of a String collection.
(Defined by CsvRecordExtension) |
FillWith | Fills record with the items of a read-only span of
Strings.
(Defined by CsvRecordExtension) |
FillWith | Fills record with the items of a read-only span of
ReadOnlyMemory<Char> values.
(Defined by CsvRecordExtension) |
FillWith | Fills record with the content of a String array.
(Defined by CsvRecordExtension) |
FillWith | Fills record with the items of an IEnumerable.
(Defined by CsvRecordExtension) |
ToDictionary | Converts a CsvRecord instance to a
Dictionary<string, ReadOnlyMemory<char>>.
(Defined by CsvRecordExtension) |
IEnumerableGetEnumerator | Returns an enumerator that iterates through a collection. |