Get<>(dict, key, defaultVal) Get<>(dict, key, defaultVal) Get<>(dict, key1, key2, defaultVal) IndexOfSubarray<>(sourceArray, findWhat, startIndex, sourceLength, comparer) Insert<>(array, startIndex, values) Insert<>(array, startIndex, value) Remove<>(array, startIndex, length) SubarrayEquals<>(sourceArray, sourceStartIndex, otherArray, otherStartIndex, length, comparer)
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>)Declarationpublic 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. |
|