DictionaryExtensionsTryUpdateTKey, TValue Method
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public static bool TryUpdate<TKey, TValue>(
this IDictionary<TKey, TValue> dictionary,
TKey key,
TValue newValue,
TValue originalValue
)
<ExtensionAttribute>
Public Shared Function TryUpdate(Of TKey, TValue) (
dictionary As IDictionary(Of TKey, TValue),
key As TKey,
newValue As TValue,
originalValue As TValue
) As Boolean
public:
[ExtensionAttribute]
generic<typename TKey, typename TValue>
static bool TryUpdate(
IDictionary<TKey, TValue>^ dictionary,
TKey key,
TValue newValue,
TValue originalValue
)
[<ExtensionAttribute>]
static member TryUpdate :
dictionary : IDictionary<'TKey, 'TValue> *
key : 'TKey *
newValue : 'TValue *
originalValue : 'TValue -> bool
- dictionary IDictionaryTKey, TValue
- The target dictionary.
- key TKey
- The key of the item to replace.
- newValue TValue
- The replacement value of key if its value equals to originalValue.
- originalValue TValue
- The expected original value of the stored item with the associated key.
- TKey
- The type of the keys in the dictionary.
- TValue
- The type of the values in the dictionary.
Boolean if
dictionary is not read-only and the value with
key
was equal to
originalValue and was replaced with
newValue; otherwise,
.In Visual Basic and C#, you can call this method as an instance method on any object of type
IDictionaryTKey,
TValue. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).