Table of Contents

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 int

The start of the field in the buffer.

length int

The 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

int

Start

The start of the field in the buffer.

public readonly int Start

Field Value

int