SortedDictionary<TKey,TValue>.Enumerator.IDictionaryEnumerator.Entry 属性

定义

DictionaryEntry 结构的形式获取枚举数当前位置的元素。

property System::Collections::DictionaryEntry System::Collections::IDictionaryEnumerator::Entry { System::Collections::DictionaryEntry get(); };
System.Collections.DictionaryEntry System.Collections.IDictionaryEnumerator.Entry { get; }
member this.System.Collections.IDictionaryEnumerator.Entry : System.Collections.DictionaryEntry
 ReadOnly Property Entry As DictionaryEntry Implements IDictionaryEnumerator.Entry

属性值

集合中位于字典当前位置的元素,形式为DictionaryEntry 结构。

实现

例外

枚举器位于集合中第一个元素之前或最后一个元素之后。

注解

IDictionaryEnumerator.Entry 在以下任一条件下未定义:

  • 枚举器位于集合的第一个元素之前。 在创建枚举器或调用 方法之后, IEnumerator.Reset 就会发生这种情况。 MoveNext在读取 属性的值IDictionaryEnumerator.Entry之前,必须调用 方法以将枚举器推进到集合的第一个元素。

  • 对返回false的最后一次MoveNext调用,它指示集合的末尾,并且枚举器位于集合的最后一个元素之后。

  • 由于集合中所做的更改(例如添加、修改或删除元素),枚举器失效。

IDictionaryEnumerator.Entry不会移动枚举器的位置,在调用 或 IEnumerator.Reset 之前MoveNext返回同一对象的连续调用IDictionaryEnumerator.Entry

适用于

另请参阅