|
ProcessDictionaryTKey, TValueAddOrUpdate(TKey, TValue) Method
|
Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax public TValue AddOrUpdate(
TKey key,
TValue value
)
Public Function AddOrUpdate (
key As TKey,
value As TValue
) As TValue
public:
TValue AddOrUpdate(
TKey key,
TValue value
)
member AddOrUpdate :
key : 'TKey *
value : 'TValue -> 'TValue
function AddOrUpdate(key, value);
View SourceParameters
- key TKey
- The key to be added or updated.
- value TValue
- The value to be assigned to the key.
Return Value
TValueThe value of the key in the dictionary after updating.
See Also