Click or drag to resize
IListRemove Method
Removes the first occurrence of a specific object from the IList.

Namespace: System.Collections
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
void Remove(
	Object value
)

Parameters

value
Type: SystemObject
The object to remove from the IList.
Exceptions
ExceptionCondition
NotSupportedExceptionThe IList is read-only.-or- The IList has a fixed size.
See Also