Save()
Saves the CSV file to it's original path.
public CsvFile Save()
Save(string)
Saves the CSV file to the specified path
.
public CsvFile Save(string path)
Parameters
path
String
The path to where the CSV file should be saved.
Save(string, CsvSeparator)
Saves the CSV file at the specified path
, using the specified
separator
and CsvFile.Encoding.
public CsvFile Save(string path, CsvSeparator separator)
Parameters
path
String
The path to where the CSV file should be saved.
separator
CsvSeparator
The separator to be used.
Save(string, Encoding)
Saves the CSV file at the specified path
, using CsvFile.Separator and the
specified encoding
.
public CsvFile Save(string path, Encoding encoding)
Save(string, CsvSeparator, Encoding)
Saves the CSV file at the specified path
, using the specified
separator
and encoding
.
public CsvFile Save(string path, CsvSeparator separator, Encoding encoding)
Parameters
path
String
The path to where the CSV file should be saved.
separator
CsvSeparator
The separator to be used.
encoding
Encoding
The encoding to be used.