ConcurrentHashSet<T>.GetEnumerator - метод

Returns a value-type enumerator that iterates through the ConcurrentHashSet<T>.

Definition

Пространство имён: Tessa.Platform.Collections
Сборка: Tessa (в Tessa.dll) Версия: 4.0.7
C#
public ConcurrentHashSet<T>.Enumerator GetEnumerator()

Возвращаемое значение

ConcurrentHashSet<T>.Enumerator
An enumerator for the ConcurrentHashSet<T>.

Заметки

The enumerator returned from the collection is safe to use concurrently with reads and writes to the collection, however it does not represent a moment-in-time snapshot of the collection. The contents exposed through the enumerator may contain modifications made to the collection after GetEnumerator() was called.

См. также