IDictionaryEnumerator | CF 1.0, ECMA 1.0 |
System.Collections (mscorlib.dll) | interface |
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 DictionaryEntry Entry{get; }
public object Key{get; }
public object Value{get; }
}
Returned By
DictionaryBase.GetEnumerator( ),
Hashtable.GetEnumerator( ),
IDictionary.GetEnumerator( ),
SortedList.GetEnumerator( ),
System.Collections.Specialized.HybridDictionary.GetEnumerator(
),
System.Collections.Specialized.ListDictionary.GetEnumerator(
)
|