Interface IDictionaryEnumerator
- Namespace
- System.Collections
- Assembly
- nanoFramework.System.Collections.dll
Enumerates the elements of a nongeneric dictionary.
public interface IDictionaryEnumerator : IEnumerator
- Inherited Members
- Extension Methods
Properties
Entry
Gets both the key and the value of the current dictionary entry.
DictionaryEntry Entry { get; }
Property Value
- DictionaryEntry
A DictionaryEntry containing both the key and the value of the current dictionary entry.
Key
Gets the key of the current dictionary entry.
object Key { get; }
Property Value
- object
The key of the current element of the enumeration.
Value
Gets the value of the current dictionary entry.
object Value { get; }
Property Value
- object
The value of the current element of the enumeration.