ConcurrentBag<T>.GetEnumerator 方法

定义

返回循环访问 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 ,它不会反映集合的任何更新。 枚举器可以安全地与读取和写入包一起使用。

适用于

另请参阅