Click or drag to resize
Accord.NET (logo)

CsvWriter Constructor (String, Char)

Initializes a new instance of the CsvWriter class.

Namespace:  Accord.IO
Assembly:  Accord.IO (in Accord.IO.dll) Version: 3.8.0
Syntax
public CsvWriter(
	string path,
	char delimiter = ''
)
Request Example View Source

Parameters

path
Type: SystemString
The path to the file to be written.
delimiter (Optional)
Type: SystemChar
The field delimiter character to separate values in the CSV file. If set to zero, will use the system's default text separator. Default is '\0' (zero).
See Also