ConcurrentDictionary<TKey,TValue>.IEnumerable.GetEnumerator Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Restituisce un enumeratore che esegue l'iterazione di ConcurrentDictionary<TKey,TValue>.
virtual System::Collections::IEnumerator ^ System.Collections.IEnumerable.GetEnumerator() = System::Collections::IEnumerable::GetEnumerator;
System.Collections.IEnumerator IEnumerable.GetEnumerator ();
abstract member System.Collections.IEnumerable.GetEnumerator : unit -> System.Collections.IEnumerator
override this.System.Collections.IEnumerable.GetEnumerator : unit -> System.Collections.IEnumerator
Function GetEnumerator () As IEnumerator Implements IEnumerable.GetEnumerator
Restituisce
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.