Adds the specified key and value to the dictionary.

 

   

Syntax
 

[C#]
virtual void Add(string key, T value)
virtual void Add(TKey key, TVal value)

 

Throws Exceptions ArgumentException: Thrown if the key was already present.Throws Exceptions NullReferenceException: Thrown if the key or value was null.

 

   

Params
 
Name Description
key The key of the element to add.
value The value of the element to add.

 

   

Notes
 

Adds the specified key and value to the dictionary.

This method adds an item to the dictionary.

If the key or value is null then this method will throw an ArgumentNullException. If the key is already present in the dictionary then this method will throw an ArgumentException.

 

   

Example
 
None.