ConcurrentDictionary<TKey,TValue>.GetEnumerator Metodo

Definizione

Restituisce un enumeratore che esegue l'iterazione di 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))

Restituisce

IEnumerator<KeyValuePair<TKey,TValue>>

Enumeratore per l'oggetto ConcurrentDictionary<TKey,TValue>.

Implementazioni

Commenti

L'enumeratore restituito dal dizionario è sicuro da usare contemporaneamente con letture e scritture nel dizionario, ma non rappresenta uno snapshot temporizzato del dizionario. Il contenuto esposto tramite l'enumeratore può contenere modifiche apportate al dizionario dopo GetEnumerator la chiamata.

Si applica a

Vedi anche