SortedDictionary<(Of <(TKey, TValue>)>).Enumerator.IDictionaryEnumerator.Value Property

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets the value of the element at the current position of the enumerator.

Namespace:  System.Collections.Generic
Assembly:  System (in System.dll)

Syntax

Private ReadOnly Property Value As Object
    Implements IDictionaryEnumerator.Value
Object 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

Exceptions

Exception Condition
InvalidOperationException

The enumerator is positioned before the first element of the collection or after the last element.

Remarks

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.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0

See Also

Reference

SortedDictionary<(Of <(TKey, TValue>)>)..::.Enumerator Structure

System.Collections.Generic Namespace

IDictionaryEnumerator

Current

MoveNext

IEnumerator