Lookup<TKey,TElement>.Contains(TKey) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定指定的键是否位于 Lookup<TKey,TElement> 中。
public:
virtual bool Contains(TKey key);
public bool Contains (TKey key);
abstract member Contains : 'Key -> bool
override this.Contains : 'Key -> bool
Public Function Contains (key As TKey) As Boolean
参数
- key
- TKey
要在 Lookup<TKey,TElement> 中查找的键。
返回
如果 key
在 Lookup<TKey,TElement> 中,则为 true
;否则为 false
。
实现
示例
以下示例演示如何使用 Contains 来确定 是否 Lookup<TKey,TElement> 包含指定的键。 此代码示例是为 Lookup<TKey,TElement> 类提供的一个更大示例的一部分。
// Determine if there is a key with the value 'G' in the Lookup.
bool hasG = lookup.Contains('G');
' Determine if there is a key with the value 'G' in the Lookup.
Dim hasG As Boolean = lookup.Contains("G"c)