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