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.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic void AddMany(
IEnumerable<KeyValuePair<TKey, TValue>> keysAndValues
)
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.
RemarksAddMany takes time O(M log (N+M)), where M is the size of keysAndValues>, and N is the size of
this dictionary.
See Also