Show / Hide Table of Contents

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 Source

Current

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 Source

MoveNext()

Advances the enumerator to the next element.

Declaration
public bool MoveNext()
Returns
Type Description
Boolean

if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.

Implements

IEnumerator<>

Extension Methods

ExpressionBuilder.Const<T>(T)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX