MultiValueHashtableTKey, TValueAdd Method (TKey, TValue) |
Adds an element with the specified key and value to the set.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax public void Add(
TKey key,
TValue value
)
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. If the key is already existing, the value is added to the existing list of values
for that key, unless the value also already exists.
See Also