System.Collections.Concurrent.ConcurrentQueue<T>.GetEnumerator Method

Returns an enumerator that iterates through the System.Collections.Concurrent.ConcurrentQueue`1.

Syntax

public IEnumerator<T> GetEnumerator ()

Returns

An enumerator for the contents of the System.Collections.Concurrent.ConcurrentQueue`1.

Remarks

The enumeration represents a moment-in-time snapshot of the contents of the queue. It does not reflect any updates to the collection after ConcurrentQueue`1.GetEnumerator was called. The enumerator is safe to use concurrently with reads from and writes to the queue.

The enumerator returns the collection elements in the order in which they were added, which is FIFO order (first-in, first-out).

Requirements

Namespace: System.Collections.Concurrent
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 4.0.0.0