Click or drag to resize
OrderedMultiDictionaryTKey, TValueRemove Method (TKey, TValue)
Removes a given value from the values associated with a key. If the last value is removed from a key, the key is removed also.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public override sealed bool Remove(
	TKey key,
	TValue value
)

Parameters

key
Type: TKey
A key to remove a value from.
value
Type: TValue
The value to remove.

Return Value

Type: Boolean
True if value was associated with key (and was therefore removed). False if value was not associated with key.
See Also