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

Namespace: Dapfor.Net.Data
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
public void Remove(
	Object value
)
Visual Basic
Public Sub Remove ( 
	value As Object
)
Visual C++
public:
virtual void Remove(
	Object^ value
) sealed
F#
abstract Remove : 
        value : Object -> unit 
override Remove : 
        value : Object -> unit 

Parameters

value
Type: System..::..Object
The Object to remove from the IList.

Implements

IList..::..Remove(Object)

Exceptions

ExceptionCondition
System..::..NotSupportedException The IList is read-only. -or- The IList has a fixed size.

See Also