| CsvReaderReadToEnd Method (Boolean, UInt64) |
Reads till the end of the csv data.
Namespace: DataStreams.CsvAssembly: DataStreams (in DataStreams.dll) Version: 5.20.0.0
Syntax public DataTable ReadToEnd(
bool readHeaders,
ulong maxRecords
)
Public Function ReadToEnd (
readHeaders As Boolean,
maxRecords As ULong
) As DataTable
Parameters
- readHeaders
- Type: SystemBoolean
Read the column names from the data.
- maxRecords
- Type: SystemUInt64
The max number of records to return in the DataTable.
Pass in 0 to read all records.
Return Value
Type:
DataTable
A
DataTable containing the csv data.
See Also