  | FastDictionaryTKey, TValueAdd Method (TKey, TValue) | 
 
            Adds the specified key and value to the dictionary.
            
 
    Namespace: 
   Cauldron.Collections
    Assembly:
   Cauldron.Collections (in Cauldron.Collections.dll) Version: 1.0.0
Syntaxpublic void Add(
	TKey key,
	TValue value
)
Public Sub Add ( 
	key As TKey,
	value As TValue
)
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. The value can be null for reference types. 
Implements
IDictionaryTKey, TValueAdd(TKey, TValue)
Exceptions
See Also