mscorlib(4.0.0.0) API with additions
|
Defines a dictionary key/value pair that can be set or retrieved. More...
Public Member Functions | |
DictionaryEntry (object key, object value) | |
Initializes an instance of the T:System.Collections.DictionaryEntry type with the specified key and value. More... | |
Properties | |
object | Key [get, set] |
Gets or sets the key in the key/value pair. More... | |
object | Value [get, set] |
Gets or sets the value in the key/value pair. More... | |
Defines a dictionary key/value pair that can be set or retrieved.
Definition at line 9 of file DictionaryEntry.cs.
System.Collections.DictionaryEntry.DictionaryEntry | ( | object | key, |
object | value | ||
) |
Initializes an instance of the T:System.Collections.DictionaryEntry type with the specified key and value.
key | The object defined in each key/value pair. |
value | The definition associated with key . |
T:System.ArgumentNullException | key is null and the .NET Framework version is 1.0 or 1.1. |
Definition at line 55 of file DictionaryEntry.cs.
|
getset |
Gets or sets the key in the key/value pair.
Definition at line 19 of file DictionaryEntry.cs.
|
getset |
Gets or sets the value in the key/value pair.
Definition at line 36 of file DictionaryEntry.cs.