| CsvWriter Constructor (Stream, Char, Encoding) |
Creates a CsvWriter object using a Stream to
write data to.
Namespace: DataStreams.CsvAssembly: DataStreams (in DataStreams.dll) Version: 5.20.0.0
Syntax public CsvWriter(
Stream outputStream,
char delimiter,
Encoding encoding
)
Public Sub New (
outputStream As Stream,
delimiter As Char,
encoding As 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