Click or drag to resize
OrderedDictionaryTKey, TValueAddMany 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: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public void AddMany(
	IEnumerable<KeyValuePair<TKey, TValue>> keysAndValues
)

Parameters

keysAndValues
Type: System.Collections.GenericIEnumerableKeyValuePairTKey, TValue
A collection of keys and values whose contents are added to the current dictionary.
Remarks
AddMany takes time O(M log (N+M)), where M is the size of keysAndValues>, and N is the size of this dictionary.
See Also