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.
Assembly: mscorlib (in mscorlib.dll)
| Exception | Condition |
|---|---|
| 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.
Show: