|
ProcessDictionaryTKey, TValueGetOrAdd(TKey, FuncTKey, TValue) Method
|
Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax public TValue GetOrAdd(
TKey key,
Func<TKey, TValue> valueFactory
)
Public Function GetOrAdd (
key As TKey,
valueFactory As Func(Of TKey, TValue)
) As TValue
public:
TValue GetOrAdd(
TKey key,
Func<TKey, TValue>^ valueFactory
)
member GetOrAdd :
key : 'TKey *
valueFactory : Func<'TKey, 'TValue> -> 'TValue
function GetOrAdd(key, valueFactory);
View SourceParameters
- 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
TValueThe value of the key in the dictionary.
See Also