Click or drag to resize

ProcessDictionaryTKey, TValueAddOrUpdate(TKey, TValue) Method

Adds a key/value pair to the ProcessDictionaryTKey, TValue if the key does not already exist, or updates a key/value pair in the ProcessDictionaryTKey, TValue if the key already exists.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.244-beta+c33f622c070b2c1078a06bcb41bdeb4c19d19a0b
Syntax
public TValue AddOrUpdate(
	TKey key,
	TValue value
)
View Source

Parameters

key  TKey
The key to be added or updated.
value  TValue
The value to be assigned to the key.

Return Value

TValue
The value of the key in the dictionary after updating.
See Also