CollectionExtensionsAddOrUpdateTKey, TValue(IDictionaryTKey, TValue, TKey, TValue, FuncTKey, TValue, TValue) Method
Adds a key/value pair to the IDictionaryTKey, TValue if the key does not already exist,
or updates a key/value pair in the IDictionaryTKey, TValue if the key already exists.
Namespace: Gemstone.Collections.CollectionExtensionsAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public static TValue AddOrUpdate<TKey, TValue>(
this IDictionary<TKey, TValue> dictionary,
TKey key,
TValue addValue,
Func<TKey, TValue, TValue> updateValueFactory
)
<ExtensionAttribute>
Public Shared Function AddOrUpdate(Of TKey, TValue) (
dictionary As IDictionary(Of TKey, TValue),
key As TKey,
addValue As TValue,
updateValueFactory As Func(Of TKey, TValue, TValue)
) As TValue
public:
[ExtensionAttribute]
generic<typename TKey, typename TValue>
static TValue AddOrUpdate(
IDictionary<TKey, TValue>^ dictionary,
TKey key,
TValue addValue,
Func<TKey, TValue, TValue>^ updateValueFactory
)
JavaScript does not support generic types or methods.
- dictionary IDictionaryTKey, TValue
- The dictionary to add the key/value pair to if the key does not already exist.
- key TKey
- The key to be added or whose value should be updated
- addValue TValue
- The value to be added for an absent key
- updateValueFactory FuncTKey, TValue, TValue
- The function used to generate a new value for an existing key based on the key's existing value
- TKey
- The type of the keys in the dictionary.
- TValue
- The type of the values in the dictionary.
TValueThe new value for the key. This will be either be the result of addValueFactory (if the key was absent) or the result of updateValueFactory (if the key was present).In Visual Basic and C#, you can call this method as an instance method on any object of type
IDictionaryTKey,
TValue. 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).