ImmutableSortedDictionary<TKey,TValue>.Contains Method

Definition

Determines whether this immutable sorted dictionary contains the specified key/value pair.

public:
 virtual bool Contains(System::Collections::Generic::KeyValuePair<TKey, TValue> pair);
public bool Contains (System.Collections.Generic.KeyValuePair<TKey,TValue> pair);
abstract member Contains : System.Collections.Generic.KeyValuePair<'Key, 'Value> -> bool
override this.Contains : System.Collections.Generic.KeyValuePair<'Key, 'Value> -> bool
Public Function Contains (pair As KeyValuePair(Of TKey, TValue)) As Boolean

Parameters

pair
KeyValuePair<TKey,TValue>

The key/value pair to locate.

Returns

true if the specified key/value pair is found in the dictionary; otherwise, false.

Implements

Applies to