www.csvreader.com

Creates a CsvDataReader object using a file as the data source.

[Visual Basic]
Overloads Public Sub New( _
   ByVal fileName As String, _
   ByVal delimiter As Char, _
   ByVal encoding As Encoding _
)
[C#]
public CsvDataReader(
   string fileName,
   char delimiter,
   Encoding encoding
);

Parameters

fileName
The path to the file to use as the data source.
delimiter
The character to use as the column delimiter.
encoding
The Encoding to use while parsing the data.

See Also

CsvDataReader Class | Csv Namespace | CsvDataReader Constructor Overload List