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)
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.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.