FileHelperAsyncEngineTReadNexts Method |
Reads the specified number of records from a file or stream opened before.
Namespace:
FileHelpers
Assembly:
FileHelpers (in FileHelpers.dll) Version: 3.2.6
Syntaxpublic T[] ReadNexts(
int numberOfRecords
)
Public Function ReadNexts (
numberOfRecords As Integer
) As T()
Parameters
- numberOfRecords
- Type: SystemInt32
The number of records to read. If there are less records than requested in the
source, the file will be read to the end.
Return Value
Type:
TThe next records of the opened file or stream.
Implements
IFileHelperAsyncEngineTReadNexts(Int32)
Remarks
If there are less records than requested in the source, the file will be read to the end.
See Also