Click or drag to resize

ConcurrentListTRemove Method

Removes the first occurrence of a specific object from the list.

Namespace:  callback.ShellBoost.Core.Utilities
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public virtual bool Remove(
	T item
)

Parameters

item
Type: T
The object to remove from the list. The value can be null for reference types.

Return Value

Type: Boolean
true if item is successfully removed; otherwise, false. This method also returns false if item was not found in the list.

Implements

ICollectionTRemove(T)
See Also