Click or drag to resize
CsvWriter Constructor (Stream, Char, Encoding)
Creates a CsvWriter object using a Stream to write data to.

Namespace: DataStreams.Csv
Assembly: DataStreams (in DataStreams.dll) Version: 5.20.0.0
Syntax
public CsvWriter(
	Stream outputStream,
	char delimiter,
	Encoding encoding
)

Parameters

outputStream
Type: System.IOStream
The stream to write the column delimited data to.
delimiter
Type: SystemChar
The character to use as the column delimiter.
encoding
Type: System.TextEncoding
The Encoding to use while writing the data.
See Also