SortedDictionary<TKey, TValue>::Enumerator::IDictionaryEnumerator::Value Property
.NET Framework (current version)
Gets the value of the element at the current position of the enumerator.
Assembly: System (in System.dll)
private: property Object^ Value { virtual Object^ get() sealed = IDictionaryEnumerator::Value::get; }
Property Value
Type: System::Object^The 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.
Universal Windows Platform
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Show: