CsvEngine Constructor (String, Char, Int32) |
Create a CsvEngine using the specified number of fields.
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,
int numberOfFields
)
Public Sub New (
className As String,
delimiter As Char,
numberOfFields As Integer
)
Parameters
- className
- Type: SystemString
The name of the record class - delimiter
- Type: SystemChar
The delimiter for each field - numberOfFields
- Type: SystemInt32
The number of fields of each record
See Also