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

Namespace:  Mindscape.LightSpeed
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public bool Remove(
	TTarget item
)
Visual Basic (Declaration)
Public Function Remove ( _
	item As TTarget _
) As Boolean

Parameters

item
Type: TTarget
The object to remove from the ICollection<(Of <(T>)>).

Return Value

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

Implements

ICollection<(Of <(T>)>)..::.Remove(T)

Exceptions

ExceptionCondition
System..::.NotSupportedException The ICollection<(Of <(T>)>) is read-only.

See Also