March 2002
Intermediate to advanced
864 pages
31h 8m
English
IDictionaryEnumerator
This interface is an enumerator for Dictionary collections. It defines
three read-only properties that can be obtained from
the currently selected element of the collection.
The Entry property gets an
entry (key and value) in the form of a DictionaryEntry
object. Key and Value return the
key and value of the current element.
public interface IDictionaryEnumerator : IEnumerator { // Public Instance Properties public field DictionaryEntry Entry{get; } public field object Key{get; } public field object Value{get; } }
DictionaryBase.GetEnumerator(), Hashtable.GetEnumerator(), IDictionary.GetEnumerator(), SortedList.GetEnumerator(), System.Collections.Specialized.HybridDictionary.GetEnumerator(), System.Collections.Specialized.ListDictionary.GetEnumerator()