Click or drag to resize
CsvDataReader Constructor
Overload List
  NameDescription
Public methodCsvDataReader(TextReader)
Constructs a CsvDataReader object using a TextReader object as the data source. Uses a comma as the column delimiter.
Public methodCsvDataReader(String)
Creates a CsvDataReader object using a file as the data source. Uses a comma as the column delimiter and Default as the encoding.
Public methodCsvDataReader(Stream, Encoding)
Constructs a CsvDataReader object using a Stream object as the data source. Uses a comma as the column delimiter.
Public methodCsvDataReader(TextReader, Char)
Constructs a CsvDataReader object using a TextReader object as the data source.
Public methodCsvDataReader(String, Char)
Creates a CsvDataReader object using a file as the data source. Uses Default as the encoding.
Public methodCsvDataReader(Stream, Char, Encoding)
Constructs a CsvDataReader object using a Stream object as the data source.
Public methodCsvDataReader(String, Char, Encoding)
Creates a CsvDataReader object using a file as the data source.
Top
See Also