Struct CopyOnWriteList<T>.Enumerator
Represents enumerator over elements in the list.
Implements
IEnumerator<T>
Namespace: DotNext.Collections.Concurrent
Assembly: DotNext.dll
Syntax
public struct Enumerator : IEnumerator<T>
Properties
| Improve this Doc View SourceCurrent
Gets the element in the collection at the current position of the enumerator.
Declaration
public T Current { get; }
Property Value
| Type | Description |
|---|---|
| T |
Methods
| Improve this Doc View SourceMoveNext()
Advances the enumerator to the next element.
Declaration
public bool MoveNext()
Returns
| Type | Description |
|---|---|
| Boolean |
Implements
IEnumerator<>