ConcurrentBag<T>.GetEnumerator Metodo

Definizione

Restituisce un enumeratore che esegue l'iterazione di ConcurrentBag<T>.

public:
 virtual System::Collections::Generic::IEnumerator<T> ^ GetEnumerator();
public System.Collections.Generic.IEnumerator<T> GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.Generic.IEnumerator<'T>
override this.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<'T>
Public Function GetEnumerator () As IEnumerator(Of T)

Restituisce

Enumeratore per il contenuto dell'oggetto ConcurrentBag<T>.

Implementazioni

Commenti

L'enumerazione rappresenta uno snapshot temporizzato del contenuto del contenitore. Non riflette gli aggiornamenti alla raccolta dopo GetEnumerator la chiamata. L'enumeratore è sicuro da usare contemporaneamente con letture e scritture nel contenitore.

Si applica a

Vedi anche