ListBox.IntegerCollection.Contains(Int32) 方法

定义

确定指定的整数是否在集合中。

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

要在集合中搜索的整数。

返回

Boolean

如果指定的整数在集合中,则为 true;否则为 false

注解

使用该方法 Contains 确定整数是否为该整数的成员 ListBox.IntegerCollection。 知道项位于集合中后,可以使用该方法 IndexOf 来确定项位于集合中的位置。

适用于