Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Extension method: IDictionary<TKey, TValue> CopyMerge<TKey, TValue>(this IDictionary<TKey, TValue>, IDictionary<TKey, TValue>)

Declaration

public static IDictionary<TKey, TValue> CopyMerge<TKey, TValue>(
    this IDictionary<TKey, TValue> first,
    IDictionary<TKey, TValue> second
)

Summary

Creates a new dictionary containing the union of the key/value pairs contained in the specified dictionaries. Keys in second overwrite keys in first.

Generic type parameters

TKeyThis type parameter is not documented.
TValueThis type parameter is not documented.