CsvDataLoadOptions class

CsvDataLoadOptions class

Represents options for parsing CSV data.

The CsvDataLoadOptions type exposes the following members:

Constructors

Constructor Description
init Initializes a new instance of this class with default options.
init Initializes a new instance of this class with specifying whether CSV data contains column names
at the first line.

Properties

Property Description
has_headers Gets or sets a value indicating whether the first line of CSV data contains column names.
delimiter Gets or sets the character to be used as a column delimiter.
quote_char Gets or sets the character that is used to quote field values.
comment_char Gets or sets the character that is used to comment lines of CSV data.

Remarks

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

See Also