ListBox.IntegerCollection.Contains(Int32) Method

Definition

Determines whether the specified integer is in the collection.

public:
 bool Contains(int item);
public bool Contains (int item);
member this.Contains : int -> bool
Public Function Contains (item As Integer) As Boolean

Parameters

item
Int32

The integer to search for in the collection.

Returns

true if the specified integer is in the collection; otherwise, false.

Remarks

Use the Contains method to determine whether an integer is a member of the ListBox.IntegerCollection. Once you know that the item is located within the collection, you can use the IndexOf method to determine where the item is located within the collection.

Applies to