Bridge

List<(Of <(<'T>)>)>..::..Remove Method

Removes the first occurrence of a specific object from the List<(Of <(<'T>)>)>.

Namespace:  System.Collections.Generic
Assembly:  Bridge (in Bridge.dll)

Syntax


public bool Remove(
	T item
)
Public Function Remove ( _
	item As T _
) As Boolean
public:
bool^ Remove(
	T item
)

Parameters

item
Type: T
The object to remove from the List<(Of <(<'T>)>)>. The value can be null for reference types.

Return Value

true if item is successfully removed; otherwise, false. This method also returns false if item was not found in the List<(Of <(<'T>)>)>.