ImmutableDictionary.Contains<TKey,TValue> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定指定的不可变字典是否包含指定的键/值对。
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
不可变字典中值的类型。
参数
要搜索的不可变字典。
- key
- TKey
要在不可变字典中查找的键。
- value
- TValue
找到指定的键时,要在该键中查找的值。
返回
如果此映射包含指定的键/值对,则为 true
;否则为 false
。