SortedDictionary<TKey,TValue>.Enumerator.Current 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取枚举数当前位置的元素。
public:
property System::Collections::Generic::KeyValuePair<TKey, TValue> Current { System::Collections::Generic::KeyValuePair<TKey, TValue> get(); };
public System.Collections.Generic.KeyValuePair<TKey,TValue> Current { get; }
member this.Current : System.Collections.Generic.KeyValuePair<'Key, 'Value>
Public ReadOnly Property Current As KeyValuePair(Of TKey, TValue)
属性值
SortedDictionary<TKey,TValue> 中位于该枚举数当前位置的元素。
实现
注解
Current 在以下任一条件下未定义:
枚举器位于集合的第一个元素之前。 在创建枚举器或调用 方法之后, IEnumerator.Reset 就会发生这种情况。 MoveNext在读取 属性的值Current之前,必须调用 方法以将枚举器推进到集合的第一个元素。
对返回
false
的最后一MoveNext次调用,它指示集合的末尾,并且枚举器位于集合的最后一个元素之后。枚举器由于集合中的更改(例如添加、修改或删除元素)而失效。
Current 不会移动枚举器的位置,并且连续调用 以 Current 返回同一对象,直到 MoveNext 调用 或 IEnumerator.Reset 。