ConcurrentBag<T>.GetEnumerator 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回在 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)
傳回
ConcurrentBag<T> 內容的列舉程式。
實作
備註
列舉代表包內容的時間點快照集。 在呼叫之後 GetEnumerator ,它不會反映集合的任何更新。 列舉值很安全,可與讀取和寫入包同時使用。