NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DictionaryEntry Constructor

Initializes an instance of the DictionaryEntry class.

[Visual Basic]
Public Sub New( _
   ByVal key As Object, _
   ByVal value As Object _
)
[C#]
public DictionaryEntry(
   object key,
   object value
);
[C++]
public: DictionaryEntry(
   Object* key,
   Object* value
);
[JScript]
public function DictionaryEntry(
   key : Object,
   value : Object
);

Parameters

key
The object defined in each key-and-value pair.
value
The definition associated with key.

See Also

DictionaryEntry Structure | DictionaryEntry Members | System.Collections Namespace