Adds given key and value to dictionary.
Namespace:
Endeca.Web.Url.Seo.Utility
Assembly:
Endeca.Web.Url.Seo (in Endeca.Web.Url.Seo.dll) Version: 2.1.1.0 (2.1.1.0)
Syntax
| C# |
|---|
public void Add(
T key,
U value
) |
| Visual Basic (Declaration) |
|---|
Public Sub Add ( _
key As T, _
value As U _
) |
| Visual C++ |
|---|
public:
virtual void Add(
T key,
U value
) sealed |
Parameters
- key
- Type: T
Key of object to add to dictionary.
- value
- Type: U
Object to add to dictionary.
Implements
IDictionary<(Of <(TKey, TValue>)>)..::.Add(TKey, TValue)
See Also