Struct CsvParser.ProcessedField
- Namespace
- CsvHelper
- Assembly
- CsvHelper.dll
Processes a raw field based on configuration. This will remove quotes, remove escapes, and trim if configured to.
protected readonly struct CsvParser.ProcessedField
- Inherited Members
Constructors
ProcessedField(int, int, char[])
Creates a new instance of ProcessedField.
public ProcessedField(int start, int length, char[] buffer)
Parameters
start
intThe start of the field in the buffer.
length
intThe length of the field in the buffer.
buffer
char[]The buffer that contains the field.
Fields
Buffer
The buffer that contains the field.
public readonly char[] Buffer
Field Value
- char[]
Length
The length of the field in the buffer.
public readonly int Length
Field Value
Start
The start of the field in the buffer.
public readonly int Start