 | CondensedCollectionTRemove Method |
[This is preliminary documentation and is subject to change.]
Removes the first occurrence of a specific object from the collection.
Namespace:
Condensed
Assembly:
Condensed (in Condensed.dll) Version: 0.1.0.0 (0.1.0.0)
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 collection.
Return Value
Type:
Booleantrue if item was successfully removed from the collection; otherwise, false. This method also returns false if item is not found in the original collection.
Implements
ICollectionTRemove(T)
See Also