Removes the first occurrence of a specific object from the BigList.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public bool Remove(
T item
)
Public Function Remove (
item As T
) As Boolean
public:
bool Remove(
T item
)
member Remove :
item : 'T -> bool
Parameters
- item
- Type: T
The object to remove from the BigList.
Return Value
Type:
Booleantrue if item is successfully removed; otherwise, false. This method also
returns false if item was not found in the BigList.
See Also