|
CsvWriterToText Method
|
Initializes a new instance of the
CsvWriter
class to write the CSV fields to a in-memory string.
Namespace:
Accord.IO
Assembly:
Accord.IO (in Accord.IO.dll) Version: 3.8.0
Syntax public static CsvWriter ToText(
StringBuilder builder,
char delimiter = ''
)
Public Shared Function ToText (
builder As StringBuilder,
Optional delimiter As Char = ""C
) As CsvWriter
Request Example
View SourceParameters
- builder
- Type: System.TextStringBuilder
A StringBuilder to write to. - 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).
Return Value
Type:
CsvWriterSee Also