| CsvReader Constructor (Stream, Encoding) |
Constructs a
CsvReader object using
a
Stream object as the data
source. Uses a comma as the column delimiter.
Namespace: DataStreams.CsvAssembly: DataStreams (in DataStreams.dll) Version: 5.20.0.0
Syntax public CsvReader(
Stream inputStream,
Encoding encoding
)
Public Sub New (
inputStream As Stream,
encoding As Encoding
)
Parameters
- inputStream
- Type: System.IOStream
The stream to use as the data source.
- encoding
- Type: System.TextEncoding
The Encoding to use while parsing the data.
See Also