| PriorityQueueTRemove Method |
Removes the specified item.
Namespace: DigitalRune.CollectionsAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public bool Remove(
T item
)
Public Function Remove (
item As T
) As Boolean
public:
virtual bool Remove(
T item
) sealed
abstract Remove :
item : 'T -> bool
override Remove :
item : 'T -> bool
Parameters
- item
- Type: T
The item.
Return Value
Type:
Boolean if the item was found and removed;
if the
item is not contained in the queue.
Implements
ICollectionTRemove(T)See Also