SortedDictionary<TKey, TValue>.ValueCollection.Enumerator.Current Property
Gets the element at the current position of the enumerator.
Assembly: System (in System.dll)
Property Value
Type: TValueThe element in the SortedDictionary<TKey, TValue>.ValueCollection at the current position of the enumerator.
Implements
IEnumerator<T>.CurrentThe Current property is undefined under any of the following conditions:
-
The enumerator is positioned before the first element in the collection, immediately after the enumerator is created. The MoveNext method must be called to advance the enumerator to the first element of the collection before reading the value of Current.
-
The last call to MoveNext returned false, which indicates the end of the collection.
The Current property returns the same object until MoveNext is called. MoveNext sets Current to the next element. If the collection is modified between MoveNext and Current, Current returns the element that it is set to, even if the enumerator is already invalidated.
Note
|
|---|
|
For better performance, this property does not throw an exception if the enumerator is positioned before the first element or after the last element; the value of the property is undefined. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note