IMapView<K,V>.HasKey(K) 方法

定义

确定地图视图是否包含指定的键。

public:
 bool HasKey(K key);
bool HasKey(K const& key);
public bool HasKey(K key);
Public Function HasKey (key As K) As Boolean

参数

key
K

在地图视图中查找的键。

返回

Boolean

bool

如果找到密钥,则为 True;否则为 false。

注解

使用 .NET 编程时,此接口是隐藏的,开发人员应使用 System.Collections.Generic.IReadOnlyDictionary<TKey,TValue> 接口。

适用于

另请参阅