 | ReadOnlyCollectionTRemove Method |
Removes the first occurrence of a specific object from the
ICollectionT.
Namespace: Slash.Collections.ObjectModelAssembly: Slash.Collections (in Slash.Collections.dll) Version: 1.0.6018.40177
Syntaxpublic 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 ICollectionT .
Return Value
Type:
Boolean
true if
item was successfully removed from the
ICollectionT
; otherwise, false. This method also returns false if
item
is not found in the original
ICollectionT .
Implements
ICollectionTRemove(T)
Exceptions
See Also