SortedDictionary<TKey, TValue>.Enumerator.IDictionaryEnumerator.Key Property
Gets the key of the element at the current position of the enumerator.
Namespace: System.Collections.Generic
Assembly: System (in System.dll)
Property Value
Type: System.ObjectThe key of the element in the collection at the current position of the enumerator.
Implements
IDictionaryEnumerator.Key| 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 Key; otherwise, Key is undefined.
The Key property also throws an exception if the last call to MoveNext returned false, which indicates the end of the collection.
Key returns the same object until MoveNext is called. MoveNext sets Key to the next element.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.