| WeakCollectionTRemove Method |
Removes the first occurrence of a specific object from the
WeakCollectionT.
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 object to remove from the WeakCollectionT.
Return Value
Type:
Boolean if
item was successfully removed from the
ICollectionT; otherwise,
. This method also returns
if
item is not found in the original
ICollectionT.
Implements
ICollectionTRemove(T)See Also