Dictionary<TKey, TValue>::Enumerator::IDictionaryEnumerator::Entry Property
Gets the element at the current position of the enumerator.
Assembly: mscorlib (in mscorlib.dll)
private: property DictionaryEntry Entry { virtual DictionaryEntry get() sealed = IDictionaryEnumerator::Entry::get; }
Property Value
Type: System.Collections::DictionaryEntryThe element in the dictionary at the current position of the enumerator, as a DictionaryEntry.
Implements
IDictionaryEnumerator::Entry| 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.
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