|
ProcessQueueTRemove Method
|
Removes the first occurrence of a specific object from the
ProcessQueueT.
Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax public virtual bool Remove(
T item
)
Public Overridable Function Remove (
item As T
) As Boolean
public:
virtual bool Remove(
T item
)
abstract Remove :
item : 'T -> bool
override Remove :
item : 'T -> bool
View SourceParameters
- item T
- The object to remove from the ProcessQueueT. The value can be null for reference types.
Return Value
BooleanTrue, if item is successfully removed; otherwise, false. This method also returns false if item was
not found in the
ProcessQueueT.
Implements
ICollectionTRemove(T)See Also