File.storeCsvLine

Store the given PoolStringArray in the file as a line formatted in the CSV (Comma-Separated Values) format. You can pass a different delimiter delim to use other than the default "," (comma). This delimiter must be one-character long. Text will be encoded as UTF-8.

struct File
@nogc nothrow
void
storeCsvLine
(
in PoolStringArray values
,
in String delim = gs!","
)

Meta