|
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 = ''
)
Public Sub New (
path As String,
Optional delimiter As Char = ""C
)
Request Example
View SourceParameters
- 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