ListBox::IntegerCollection::Remove Method (Int32)

 

Removes the specified integer from the ListBox::IntegerCollection.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
void Remove(
	int item
)

Parameters

item
Type: System::Int32

The integer to remove from the ListBox::IntegerCollection.

When you remove an integer from the ListBox::IntegerCollection, the indexes change for subsequent integers in the collection. All information about the removed integer is deleted. You can use the Remove method to remove a specific item from the list by specifying the actual item to remove from the list. To specify the index of the integer to remove instead of the integer itself, use the RemoveAt method.

If the integer is not in the ListBox::IntegerCollection, this method does nothing.

.NET Framework
Available since 2.0
Return to top
Show: