ListBox.IntegerCollection.Contains(Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
判斷指定的整數是否在集合中。
public:
bool Contains(int item);
public bool Contains (int item);
member this.Contains : int -> bool
Public Function Contains (item As Integer) As Boolean
參數
- item
- Int32
要在集合中搜尋的整數。
傳回
如果指定的整數在集合中,則為 true
,否則為 false
。
備註
Contains使用 方法來判斷整數是否為 的成員 ListBox.IntegerCollection 。 一旦您知道專案位於集合中,您就可以使用 IndexOf 方法來判斷專案在集合內的位置。