|
CsvWriter Constructor (TextWriter, 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(
TextWriter writer,
char delimiter = ''
)
Public Sub New (
writer As TextWriter,
Optional delimiter As Char = ""C
)
Request Example
View SourceParameters
- writer
- Type: System.IOTextWriter
A TextWriter pointing to the CSV file. - 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