IList.Remove Method

List(Of T).IList.Remove Method

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Removes the first occurrence of a specific object from the IList.

Namespace:  System.Collections.Generic
Assembly:  mscorlib (in mscorlib.dll)

'Declaration
Private Sub Remove ( _
	item As Object _
) Implements IList.Remove

Parameters

item
Type: System.Object
The object to remove from the IList.

Implements

IList.Remove(Object)

ExceptionCondition
ArgumentException

item is of a type that is not assignable to the IList.

This method determines equality using the default equality comparer EqualityComparer(Of T).Default for T, the type of values in the list.

This method performs a linear search; therefore, this method is an O(n) operation, where n is Count.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft