OrderedDictionary<TKey,TValue>.Enumerator 结构

定义

枚举 OrderedDictionary<TKey,TValue>的元素。

public: value class OrderedDictionary<TKey, TValue>::Enumerator : System::Collections::Generic::IEnumerator<System::Collections::Generic::KeyValuePair<TKey, TValue>>, System::Collections::IDictionaryEnumerator
public struct OrderedDictionary<TKey,TValue>.Enumerator : System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<TKey,TValue>>, System.Collections.IDictionaryEnumerator
type OrderedDictionary<'Key, 'Value>.Enumerator = struct
    interface IEnumerator<KeyValuePair<'Key, 'Value>>
    interface IEnumerator
    interface IDisposable
    interface IDictionaryEnumerator
Public Structure OrderedDictionary(Of TKey, TValue).Enumerator
Implements IDictionaryEnumerator, IEnumerator(Of KeyValuePair(Of TKey, TValue))

类型参数

TKey
TValue
继承
OrderedDictionary<TKey,TValue>.Enumerator
实现

属性

Current

获取集合中枚举器当前位置的元素。

方法

MoveNext()

将枚举器推进到集合的下一个元素。

显式接口实现

IDictionaryEnumerator.Entry

获取当前字典条目的键和值。

IDictionaryEnumerator.Key

获取当前字典条目的键。

IDictionaryEnumerator.Value

获取当前字典条目的值。

IDisposable.Dispose()

执行与释放、释放或重置非托管资源关联的应用程序定义任务。

IEnumerator.Current

获取集合中枚举器当前位置的元素。

IEnumerator.Reset()

将枚举器设置为其初始位置,该位置位于集合中的第一个元素之前。

适用于