Removes the given item from the queue, if it is present. The first equal value is removed.

Namespace: MonoSoftware.Core.Collections
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public bool Remove(
	T item
)
Visual Basic
Public Function Remove ( 
	item As T
) As Boolean
Visual C++
public:
virtual bool Remove(
	T item
) sealed
F#
abstract Remove : 
        item : 'T -> bool 
override Remove : 
        item : 'T -> bool 

Parameters

item
Type: T

Return Value

Type: Boolean

Implements

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

See Also