DictionaryExtensionsTryRemoveTKey, TValue(IDictionaryTKey, TValue, TKey) Method

Tries to remove the value with the specified key from the specified dictionary.

Definition

Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
C#
public static bool TryRemove<TKey, TValue>(
	this IDictionary<TKey, TValue> dictionary,
	TKey key
)

Parameters

dictionary  IDictionaryTKey, TValue
The target dictionary.
key  TKey
Key of the item to remove.

Type Parameters

TKey
The type of the keys in the dictionary.
TValue
The type of the values in the dictionary.

Return Value

Boolean
if dictionary is not read-only and the element is successfully removed; otherwise, .

Usage Note

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).

Exceptions

See Also