Click or drag to resize
ReadOnlyMultiDictionaryBaseTKey, TValueContains Method (TKey, TValue)
Determines if this dictionary contains a key-value pair equal to key and value. The dictionary is not changed. This method must be overridden in the derived class.

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

Parameters

key
Type: TKey
The key to search for.
value
Type: TValue
The value to search for.

Return Value

Type: Boolean
True if the dictionary has associated value with key.
See Also