Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Dictionary<TKey, TValue>::Enumerator::IDictionaryEnumerator::Entry Property

 

Gets the element at the current position of the enumerator.

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

private:
property DictionaryEntry Entry {
	virtual DictionaryEntry get() sealed = IDictionaryEnumerator::Entry::get;
}

Property Value

Type: System.Collections::DictionaryEntry

The element in the dictionary at the current position of the enumerator, as a DictionaryEntry.

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 a Reset is called, MoveNext must be called to advance the enumerator to the first element of the collection before reading the value of Entry; otherwise, Entry is undefined.

Entry 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.

Universal Windows Platform
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft