Click or drag to resize

ProcessDictionaryTKey, TValueGetOrAdd(TKey, FuncTKey, 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.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
Syntax
public TValue GetOrAdd(
	TKey key,
	Func<TKey, TValue> valueFactory
)
View Source

Parameters

key  TKey
The key to be added to the dictionary if it does not already exist.
valueFactory  FuncTKey, TValue
The function used to generate a value for the key.

Return Value

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