Adds an element with the provided key and value.

Namespace:  Mindscape.WpfPropertyGrid
Assembly:  Mindscape.WpfPropertyGrid (in Mindscape.WpfPropertyGrid)
Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public void Add(
	TKey key,
	TValue value
)
Visual Basic (Declaration)
Public Sub Add ( _
	key As TKey, _
	value As TValue _
)

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