ListView.SelectedListViewItemCollection.ContainsKey(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定集合中是否包含具有指定键的项。
public:
virtual bool ContainsKey(System::String ^ key);
public virtual bool ContainsKey (string key);
abstract member ContainsKey : string -> bool
override this.ContainsKey : string -> bool
Public Overridable Function ContainsKey (key As String) As Boolean
参数
- key
- String
要在集合中查找的项的名称。
返回
如果指定的项包含在集合中,则为 true
;否则为 false
。
注解
属性Name对应于 中 ListView.SelectedListViewItemCollection的ListViewItem键。
键比较不区分大小写。
key
如果 参数为 null
或为空字符串,ContainsKey则false
返回 。