IList.Remove Method
When implemented by a class, removes the first occurrence of a specific object from the IList.
[Visual Basic] Sub Remove( _ ByVal value As Object _ ) [C#] void Remove( object value ); [C++] void Remove( Object* value ); [JScript] function Remove( value : Object );
Parameters
Exceptions
| Exception Type | Condition |
|---|---|
| NotSupportedException | The IList is read-only.
-or- The IList has a fixed size. |
Remarks
In collections of contiguous elements, such as lists, the elements that follow the removed element move up to occupy the vacated spot. If the collection is indexed, the indexes of the elements that are moved are also updated. This behavior does not apply to collections where elements are conceptually grouped into buckets, such as a hashtable.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework, Common Language Infrastructure (CLI) Standard
See Also
IList Interface | IList Members | System.Collections Namespace