TINMAN 3D / REALTIME TERRAIN
Software Development Kit - User Manual

struct CsvFormat in Tinman.Core.Formatting

Describes the format for comma-separated value files.

struct CsvFormat  

See also:

CsvReader
CsvWriter

Public / Attributes

Comment

Lines starting with this character are ignored.

public readonly field Comment
type char

Default

Default CSV format.

public static readonly field Default
type CsvFormat

Remarks:

Delimiter: comma
Quote: double-quotes
Comment: hash

Delimiter

The field delimiter character.

public readonly field Delimiter
type char

Quote

The quote character.

public readonly field Quote
type char

Public / Constructors

CsvFormat

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.