CSV.createTable

The two-dimensional array will be used as the content of the CSV table.

  1. void createTable(string[][] table)
  2. void createTable(string[] keys, string[][] table)
    struct CSV
    void
    createTable
    (
    string[] keys
    ,
    string[][] table
    )

Parameters

keys string[]

Titles for columns.

table string[][]

2D array for CSV fields.

Meta