Click or drag to resize

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
Syntax
public T[] ReadNexts(
	int numberOfRecords
)

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: T
The 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