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 来确定项位于集合中的位置。