CSVReader(StreamReader, CSVSettings) Constructor

/// Construct a new CSV reader off a streamed source ///
Public Sub New( _ 
ByVal source As StreamReader, _ 
Optional ByVal settings As CSVSettings = null _ 
)
This language is not supported or no code example is available.
public CSVReader( 
StreamReader source
CSVSettings settings = null 
)
This language is not supported or no code example is available.
public:  
CSVReader( 
StreamReader^ source
CSVSettings^ settings 
)
This language is not supported or no code example is available.
public function CSVReader( 
source : StreamReader
settings : CSVSettings 
);
This language is not supported or no code example is available.

Parameters

source
StreamReader

The stream source. Note that when disposed, the CSV Reader will dispose the stream reader.

settings
CSVSettings

The CSV settings to use for this reader (Default: CSV)

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition