mscorlib(4.0.0.0) API with additions
DictionaryEntry.cs
2 
3 namespace System.Collections
4 {
7  [ComVisible(true)]
8  [__DynamicallyInvokable]
9  public struct DictionaryEntry
10  {
11  private object _key;
12 
13  private object _value;
14 
17  [__DynamicallyInvokable]
18  public object Key
19  {
20  [__DynamicallyInvokable]
21  get
22  {
23  return _key;
24  }
25  [__DynamicallyInvokable]
26  set
27  {
28  _key = value;
29  }
30  }
31 
34  [__DynamicallyInvokable]
35  public object Value
36  {
37  [__DynamicallyInvokable]
38  get
39  {
40  return _value;
41  }
42  [__DynamicallyInvokable]
43  set
44  {
45  _value = value;
46  }
47  }
48 
54  [__DynamicallyInvokable]
55  public DictionaryEntry(object key, object value)
56  {
57  _key = key;
58  _value = value;
59  }
60  }
61 }
DictionaryEntry(object key, object value)
Initializes an instance of the T:System.Collections.DictionaryEntry type with the specified key and v...
Definition: __Canon.cs:3
object Value
Gets or sets the value in the key/value pair.
Specifies that the class can be serialized.
object Key
Gets or sets the key in the key/value pair.
Defines a dictionary key/value pair that can be set or retrieved.