| EnumerableRecordReaderT Constructor (IEnumerableT, Int32) |
Namespace:
Ookii.Jumbo.IO
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax public EnumerableRecordReader(
IEnumerable<T> source,
int count
)
Public Sub New (
source As IEnumerable(Of T),
count As Integer
)
public:
EnumerableRecordReader(
IEnumerable<T>^ source,
int count
)
new :
source : IEnumerable<'T> *
count : int -> EnumerableRecordReader
Parameters
- source
- Type: System.Collections.GenericIEnumerableT
The list to read from. - count
- Type: SystemInt32
The number of items in the list, or zero if this is unknown.
Remarks
If count is zero, Progress will return 0 until the reader has finished.
See Also