Adds the specified key and value to the dictionary.

Namespace:  Mindroute.Core.Collections
Assembly:  Mindroute.Core (in Mindroute.Core.dll) Version: 1.0.0.0 (1.0.0)

Syntax

C#
public void Add(
	string key,
	Object value
)
Visual Basic (Declaration)
Public Sub Add ( _
	key As String, _
	value As Object _
)

Parameters

key
Type: System..::.String
The key of the element to add.
value
Type: System..::.Object
The value of the element to add. The value can be null for reference types.

See Also