Click or drag to resize

ProcessDictionaryTKey, TValueGetOrAdd(TKey, TValue) Method

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

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.242-beta+5de70bd1c87865d409ebc16b8886196644c0c750
Syntax
public TValue GetOrAdd(
	TKey key,
	TValue value
)
View Source

Parameters

key  TKey
The key to be added to the dictionary if it does not already exist.
value  TValue
The value to assign to the key if the key does not already exist.

Return Value

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