CSVOpenTable Method (String, Boolean) |
Opens a CSV file and returns a DataTable.
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static DataTable OpenTable(
string fileName,
bool firstRowFieldNames
)
Public Shared Function OpenTable (
fileName As String,
firstRowFieldNames As Boolean
) As DataTable
Parameters
- fileName
- Type: SystemString
The full path to the file. - firstRowFieldNames
- Type: SystemBoolean
true if the first row contains the field names
Return Value
Type:
DataTableA DataTable object created from the imported CSV file.
See Also