OrderedDictionary<(Of <(<'TKey, TValue>)>)>..::..AddMany Method
Adds multiple key-value pairs to a dictionary. If a key exists in both the current instance and dictionaryToAdd,
then the value is updated with the value from keysAndValues> (no exception is thrown).
Since IDictionary<TKey,TValue> inherits from IEnumerable<KeyValuePair<TKey,TValue>>, this
method can be used to merge one dictionary into another.
Namespace:
Wintellect.PowerCollections
Assembly:
PowerCollections (in PowerCollections.dll)
Syntax
public void AddMany( IEnumerable<KeyValuePair<TKey, TValue>> keysAndValues )
Public Sub AddMany ( _ keysAndValues As IEnumerable(Of KeyValuePair(Of TKey, TValue)) _ )
public: void AddMany( IEnumerable<KeyValuePair<TKey, TValue>^>^ keysAndValues )
Parameters
- keysAndValues
- Type: IEnumerable<(Of <(<'KeyValuePair<(Of <(<'TKey, TValue>)>)>>)>)>
A collection of keys and values whose contents are added to the current dictionary.