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.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic abstract bool Contains(
TKey key,
TValue value
)
public:
virtual bool Contains(
TKey key,
TValue value
) abstract
Parameters
- key
- Type: TKey
The key to search for. - value
- Type: TValue
The value to search for.
Return Value
Type:
BooleanTrue if the dictionary has associated
value with
key.
See Also