Describes the format for comma-separated value files.
struct
|
CsvFormat
|
See also:
CsvReaderLines starting with this character are ignored.
public
readonly
field
|
Comment
|
||
type
|
char
|
Default CSV format.
public
static
readonly
field
|
Default
|
||
type
|
CsvFormat
|
Remarks:
Delimiter:
comma
Quote:
double-quotes
Comment:
hash
The field delimiter character.
public
readonly
field
|
Delimiter
|
||
type
|
char
|
The quote character.
public
readonly
field
|
Quote
|
||
type
|
char
|
Creates a new instance of CsvFormat.
public
constructor
|
CsvFormat
(char delimiter,
char quote = ''"'',
char comment = ''#'')
|
||
params
|
delimiter
|
Delimiter character between cell values. | |
quote
|
Character for quoting cell value text. Defaults to double-quotes. | ||
comment
|
Line prefix character that marks single-line comments. Defaults to hash. |