ModelItemDictionary.ContainsKey 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
判斷字典是否包含指定的索引鍵。
多載
ContainsKey(ModelItem) |
判斷字典是否包含指定的索引鍵。 |
ContainsKey(Object) |
判斷字典是否包含指定的索引鍵。 |
ContainsKey(ModelItem)
判斷字典是否包含指定的索引鍵。
public:
abstract bool ContainsKey(System::Activities::Presentation::Model::ModelItem ^ key);
public abstract bool ContainsKey (System.Activities.Presentation.Model.ModelItem key);
abstract member ContainsKey : System.Activities.Presentation.Model.ModelItem -> bool
Public MustOverride Function ContainsKey (key As ModelItem) As Boolean
參數
- key
- ModelItem
要尋找的索引鍵。
傳回
如果字典包含指定的索引鍵,則為 true
,否則為 false
。
實作
例外狀況
如果 key
為 null
。
適用於
ContainsKey(Object)
判斷字典是否包含指定的索引鍵。
public:
abstract bool ContainsKey(System::Object ^ key);
public abstract bool ContainsKey (object key);
abstract member ContainsKey : obj -> bool
Public MustOverride Function ContainsKey (key As Object) As Boolean
參數
- key
- Object
要尋找的索引鍵。
傳回
如果字典包含指定的索引鍵,則為 true
,否則為 false
。
例外狀況
如果 key
為 null
。