CSV.this

The constructor takes a path to future CSV-file and two-dimensional array as the initiating table.

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

Parameters

filepath string

Path to file for saving CSV table. The existence of the file, as well as its contents, do not matter.

table string[][]

2D array with content for the CSV file.

Meta