List<T>::IList::Remove Method (Object^)
.NET Framework (current version)
Removes the first occurrence of a specific object from the IList.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- item
-
Type:
System::Object^
The object to remove from the IList.
Implements
IList::Remove(Object^)| 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<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.
Universal Windows Platform
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: