 | BitCollectionRemove Method |
[This is preliminary documentation and is subject to change.]
Removes the first occurrence of the specified value from the collection.
Namespace:
Condensed
Assembly:
Condensed (in Condensed.dll) Version: 0.1.0.0 (0.1.0.0)
Syntaxpublic bool Remove(
bool item
)
Public Function Remove (
item As Boolean
) As Boolean
public:
virtual bool Remove(
bool item
) sealed
abstract Remove :
item : bool -> bool
override Remove :
item : bool -> bool Parameters
- item
- Type: SystemBoolean
The value 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