Adds an element with the provided key and value.

Namespace: Mindscape.SilverlightElements
Assembly: Mindscape.SilverlightElements (in Mindscape.SilverlightElements.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

C#
public void Add(
	TKey key,
	TValue value
)
Visual Basic
Public Sub Add ( _
	key As TKey, _
	value As TValue _
)
Visual C++
public:
virtual void Add(
	TKey key, 
	TValue value
) sealed

Parameters

key
Type: TKey
The key of the element to add.
value
Type: TValue
The value of the element to add.

Implements

IDictionary<(Of <(<'TKey, TValue>)>)>..::..Add(TKey, TValue)

See Also