ImmutableDictionary.Contains<TKey,TValue> 方法

定义

确定指定的不可变字典是否包含指定的键/值对。

public:
generic <typename TKey, typename TValue>
[System::Runtime::CompilerServices::Extension]
 static bool Contains(System::Collections::Immutable::IImmutableDictionary<TKey, TValue> ^ map, TKey key, TValue value);
public static bool Contains<TKey,TValue> (this System.Collections.Immutable.IImmutableDictionary<TKey,TValue> map, TKey key, TValue value);
static member Contains : System.Collections.Immutable.IImmutableDictionary<'Key, 'Value> * 'Key * 'Value -> bool
<Extension()>
Public Function Contains(Of TKey, TValue) (map As IImmutableDictionary(Of TKey, TValue), key As TKey, value As TValue) As Boolean

类型参数

TKey

不可变字典中键的类型。

TValue

不可变字典中值的类型。

参数

map
IImmutableDictionary<TKey,TValue>

要搜索的不可变字典。

key
TKey

要在不可变字典中查找的键。

value
TValue

找到指定的键时,要在该键中查找的值。

返回

如果此映射包含指定的键/值对,则为 true;否则为 false

适用于