ConcurrentDictionary<TKey,TValue>.GetEnumerator Метод

Определение

Возвращает перечислитель, осуществляющий перебор элементов списка ConcurrentDictionary<TKey,TValue>.

public:
 virtual System::Collections::Generic::IEnumerator<System::Collections::Generic::KeyValuePair<TKey, TValue>> ^ GetEnumerator();
public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<TKey,TValue>> GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<'Key, 'Value>>
override this.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<'Key, 'Value>>
Public Function GetEnumerator () As IEnumerator(Of KeyValuePair(Of TKey, TValue))
Public Iterator Overridable NotOverridable Function GetEnumerator () As IEnumerator(Of KeyValuePair(Of TKey, TValue))

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

IEnumerator<KeyValuePair<TKey,TValue>>

Перечислитель для коллекции ConcurrentDictionary<TKey,TValue>.

Реализации

Комментарии

Перечислитель, возвращаемый из словаря, можно безопасно использовать одновременно с чтением и записью в словарь, однако он не представляет момент времени snapshot словаря. Содержимое, предоставляемое с помощью перечислителя, может содержать изменения, внесенные в словарь после GetEnumerator вызова .

Применяется к

См. также раздел