Click or drag to resize
DictionaryBaseTKey, TValueContains Method
Determines if a dictionary contains a given KeyValuePair. This implementation checks to see if the dictionary contains the given key, and if the value associated with the key is equal to (via object.Equals) the value.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public override bool Contains(
	KeyValuePair<TKey, TValue> item
)

Parameters

item
Type: System.Collections.GenericKeyValuePairTKey, TValue
A KeyValuePair containing the Key and Value to check for.

Return Value

Type: Boolean

[Missing <returns> documentation for "M:X3Platform.Collections.DictionaryBase`2.Contains(System.Collections.Generic.KeyValuePair{`0,`1})"]

Implements

ICollectionTContains(T)
ICollectionTContains(T)
See Also