CSV.this

The constructor takes an array of table column names and a two-dimensional array as the initiating table.

  1. this(string filepath)
  2. this(string[][] table)
  3. this(string filepath, string[][] table)
  4. this(string[] keys, string[][] table)
    struct CSV
    this
    (
    string[] keys
    ,
    string[][] table
    )

Parameters

keys string[]

Table column titles.

table string[][]

2D with content for the CSV file (without titles).

Meta