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