OrderedDictionaryTKey, TValueAdd Method
Adds the specified key and value to the dictionary as an O(1) operation.
Namespace: Gemstone.CollectionsAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public void Add(
TKey key,
TValue value
)
Public Sub Add (
key As TKey,
value As TValue
)
public:
virtual void Add(
TKey key,
TValue value
) sealed
function Add(key, value);
- key TKey
- The key of the element to add.
- value TValue
- The value of the element to add. The value can be null for reference types.
IDictionaryTKey, TValueAdd(TKey, TValue)