IDictionaryEnumerator.Entry Property
Collapse the table of content
Expand the table of content

SortedDictionary(Of TKey, TValue).Enumerator.IDictionaryEnumerator.Entry Property

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

Gets the element at the current position of the enumerator as a DictionaryEntry structure.

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

'Declaration
Private ReadOnly Property Entry As DictionaryEntry
	Implements IDictionaryEnumerator.Entry

Property Value

Type: System.Collections.DictionaryEntry
The element in the collection at the current position of the dictionary, as a DictionaryEntry structure.

Implements

IDictionaryEnumerator.Entry

ExceptionCondition
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 Entry; otherwise, Entry is undefined.

The Entry property also throws an exception if the last call to MoveNext returned false, which indicates the end of the collection.

Entry returns the same object until MoveNext is called. MoveNext sets Entry to the next element.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft