mscorlib(4.0.0.0) API with additions
IDictionaryEnumerator.cs
2 
3 namespace System.Collections
4 {
6  [ComVisible(true)]
7  [__DynamicallyInvokable]
8  public interface IDictionaryEnumerator : IEnumerator
9  {
13  [__DynamicallyInvokable]
14  object Key
15  {
16  [__DynamicallyInvokable]
17  get;
18  }
19 
23  [__DynamicallyInvokable]
24  object Value
25  {
26  [__DynamicallyInvokable]
27  get;
28  }
29 
33  [__DynamicallyInvokable]
35  {
36  [__DynamicallyInvokable]
37  get;
38  }
39  }
40 }
object Key
Gets the key of the current dictionary entry.
Definition: __Canon.cs:3
DictionaryEntry Entry
Gets both the key and the value of the current dictionary entry.
object Value
Gets the value of the current dictionary entry.
Enumerates the elements of a nongeneric dictionary.
Defines a dictionary key/value pair that can be set or retrieved.
Supports a simple iteration over a non-generic collection.
Definition: IEnumerator.cs:9