IDictionaryEnumerator

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( )



C# in a Nutshell
C # in a Nutshell, Second Edition
ISBN: 0596005261
EAN: 2147483647
Year: 2005
Pages: 963

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net