SortedDictionary<TKey, TValue>.Enumerator.IDictionaryEnumerator.Value Property
Gets the value of the element at the current position of the enumerator.
Assembly: System (in System.dll)
Property Value
Type: System.ObjectThe value of the element in the collection at the current position of the enumerator.
Implements
IDictionaryEnumerator.Value| Exception | Condition |
|---|---|
| InvalidOperationException |
The enumerator is positioned before the first element of the collection or after the last element. |
After an enumerator is created or after the Reset method is called, the MoveNext method must be called to advance the enumerator to the first element of the collection before reading the value of Value; otherwise, Value is undefined.
The Value property also throws an exception if the last call to MoveNext returned false, which indicates the end of the collection.
Value returns the same object until MoveNext is called. MoveNext sets Value to the next element.
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.