MultiDictionaryBaseTKey, TValueRemove Method (TKey, TValue) |
Removes a key-value pair from the dictionary. This method must be overridden in the derived class.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic abstract bool Remove(
TKey key,
TValue value
)
public:
virtual bool Remove(
TKey key,
TValue value
) abstract
Parameters
- key
- Type: TKey
Key to remove from the dictionary. - value
- Type: TValue
Associated value to remove from the dictionary.
Return Value
Type:
BooleanTrue if the key-value pair was found, false otherwise.
See Also