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
TKey | This type parameter is not documented. |
TValue | This type parameter is not documented. |