VelocityDbHashSetTRemove Method |
Remove item from this hashset
Namespace:
VelocityDb.Collection
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
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
item to remove
Return Value
Type:
Booleantrue if removed; false if not (i.e. if the item wasn't in the VelocityDbHashSet)
Implements
ICollectionTRemove(T)See Also