[]
        
(Showing Draft Content)

C1.DataCollection.C1DataCollectionList-1.Remove

Remove Method

Remove(object?)

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

Declaration
public void Remove(object? value)
Public Sub Remove(value As Object)
Parameters
Type Name Description
object value

The object to remove from the IList.

Implements

Remove(T)

Removes the first occurrence of a specific object from the ICollection<T>.

Declaration
public bool Remove(T item)
Public Function Remove(item As T) As Boolean
Parameters
Type Name Description
T item

The object to remove from the ICollection<T>.

Returns
Type Description
bool

true if item was successfully removed from the ICollection<T>; otherwise, false. This method also returns false if item is not found in the original ICollection<T>.

Implements