ConcurrentDictionary<TKey,TValue>.IEnumerable.GetEnumerator 方法

定义

返回循环访问 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

返回

用于 ConcurrentDictionary<TKey,TValue> 的枚举数。

实现

注解

从字典返回的枚举器可以安全地与字典的读取和写入同时使用,但它并不表示字典的时刻快照。 通过枚举器公开的内容可能包含在调用 后 GetEnumerator 对字典所做的修改。

适用于

另请参阅