CsvDataLoadOptions

CsvDataLoadOptions class

Represents options for parsing CSV data.

public class CsvDataLoadOptions

Constructors

Name Description
CsvDataLoadOptions() Initializes a new instance of this class with default options.
CsvDataLoadOptions(bool) Initializes a new instance of this class with specifying whether CSV data contains column names at the first line.

Properties

Name Description
CommentChar { get; set; } Gets or sets the character that is used to comment lines of CSV data.
Delimiter { get; set; } Gets or sets the character to be used as a column delimiter.
HasHeaders { get; set; } Gets or sets a value indicating whether the first line of CSV data contains column names.
QuoteChar { get; set; } Gets or sets the character that is used to quote field values.

Remarks

An instance of this class can be passed into constructors of CsvDataSource.

See Also