| PooledEnumerableTOnNext Method |
Called when the enumerator should move to the next object.
Namespace: DigitalRune.CollectionsAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax protected abstract bool OnNext(
out T current
)
Protected MustOverride Function OnNext (
<OutAttribute> ByRef current As T
) As Boolean
protected:
virtual bool OnNext(
[OutAttribute] T% current
) abstract
abstract OnNext :
current : 'T byref -> bool
Parameters
- current
- Type: T
The next object.
Return Value
Type:
Boolean if the enumerator was successfully advanced to the next element;
if the enumerator has passed the end of the collection.
See Also