CsvEngine Constructor (String, Char, String) |
Create a CsvEngine using the specified sample file with their headers.
With this constructor will ignore the first line of the file. Use CsvOptions overload.
Namespace:
FileHelpers
Assembly:
FileHelpers (in FileHelpers.dll) Version: 3.2.6
Syntaxpublic CsvEngine(
string className,
char delimiter,
string sampleFile
)
Public Sub New (
className As String,
delimiter As Char,
sampleFile As String
)
Parameters
- className
- Type: SystemString
The name of the record class - delimiter
- Type: SystemChar
The delimiter for each field - sampleFile
- Type: SystemString
A sample file with a header that contains the names of the fields.
See Also