OrderedMultiDictionaryTKey, TValueViewRemove Method (TKey, TValue) |
Removes the key and value from the underlying dictionary of this view. that is equal to the passed in key. If
no key in the view is equal to the passed key, or has the given value associated with it, the dictionary and view are unchanged.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic override sealed bool Remove(
TKey key,
TValue value
)
public:
virtual bool Remove(
TKey key,
TValue value
) override sealed
Parameters
- key
- Type: TKey
The key to remove. - value
- Type: TValue
The value to remove.
Return Value
Type:
BooleanTrue if the key-value pair was found and removed. False if the key-value pair was not found.
See Also