|
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.244-beta+c33f622c070b2c1078a06bcb41bdeb4c19d19a0b
Syntaxpublic 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