CollectionExtensionsMergeT, TKey, TValue(T, Boolean, IDictionaryTKey, TValue) Method
Merges elements of multiple dictionaries into a single dictionary.
Namespace: Gemstone.Collections.CollectionExtensionsAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public static T Merge<T, TKey, TValue>(
this T source,
bool overwriteExisting,
params IDictionary<TKey, TValue>[] others
)
where T : new(), Object, IDictionary<TKey, TValue>
<ExtensionAttribute>
Public Shared Function Merge(Of T As {New, Object, IDictionary(Of TKey, TValue)}, TKey, TValue) (
source As T,
overwriteExisting As Boolean,
ParamArray others As IDictionary(Of TKey, TValue)()
) As T
public:
[ExtensionAttribute]
generic<typename T, typename TKey, typename TValue>
where T : gcnew(), Object, IDictionary<TKey, TValue>
static T Merge(
T source,
bool overwriteExisting,
... array<IDictionary<TKey, TValue>^>^ others
)
JavaScript does not support generic types or methods.
- source T
- Source dictionary to merge with another dictionary.
- overwriteExisting Boolean
- Set to true to overwrite duplicate key values as they are encountered.
- 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.
TA merged collection of all unique dictionary elements, all
others merged left to the source.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).