| DequeTICollectionTRemove Method |
Removes the first occurrence of a specific object from the
ICollectionT.
Namespace: DigitalRune.CollectionsAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax bool ICollection<T>.Remove(
T item
)
Private Function Remove (
item As T
) As Boolean Implements ICollection(Of T).Remove
private:
virtual bool Remove(
T item
) sealed = ICollection<T>::Remove
private abstract Remove :
item : 'T -> bool
private override Remove :
item : 'T -> bool
Parameters
- item
- Type: T
The object to remove from the ICollectionT.
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)Exceptions See Also