ListBox.ObjectCollection.Contains(Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
判斷指定的項目是否位於集合中。
public:
virtual bool Contains(System::Object ^ value);
public:
bool Contains(System::Object ^ value);
public bool Contains (object value);
abstract member Contains : obj -> bool
override this.Contains : obj -> bool
member this.Contains : obj -> bool
Public Function Contains (value As Object) As Boolean
參數
- value
- Object
表示位於集合中項目的物件。
傳回
如果項目位於集合中,則為 true
,否則為 false
。
實作
例外狀況
value
為 null
。
備註
方法 Contains 可讓您判斷物件是否為集合的成員。 一旦您知道專案位於集合中,您就可以使用 IndexOf 方法來判斷專案位於集合中的位置。