CollectionExtensionsMergeT, TKey, TValue(T, IDictionaryTKey, TValue) Method
Merges elements of multiple dictionaries into a single dictionary with no duplicate key values overwritten.
Namespace: Gemstone.Collections.CollectionExtensionsAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.166 -- Release Build+d3cb24a90fe44346300dfbb17444d7b350f42d79
public static T Merge<T, TKey, TValue>(
this T source,
params IDictionary<TKey, TValue>[] others
)
where T : new(), Object, IDictionary<TKey, TValue>
JavaScript does not support generic types or methods.
- source T
- Source dictionary to merge with another dictionary.
- others IDictionaryTKey, TValue
- Other dictionaries to merge with source dictionary.
- T
- Type of IDictionaryTKey, TValue to merge.
- TKey
- Type of IDictionaryTKey, TValue keys.
- TValue
- Type of IDictionaryTKey, TValue values.
T
A merged collection of all unique dictionary elements, all
others merged left to the source with no duplicate
key values overwritten (i.e., first encountered key value pair is the one that remains in the returned merged dictionary).
In Visual Basic and C#, you can call this method as an instance method on any object of type
T. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).