| BasePartitionTRemove Method |
Removes the first occurrence of a specific object from the
BasePartitionT.
Namespace: DigitalRune.Geometry.PartitioningAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
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
The object to remove from the BasePartitionT.
Return Value
Type:
Boolean if
item was successfully removed from the
BasePartitionT; otherwise,
. This method also
returns
if
item is not found in the original
BasePartitionT.
Implements
ICollectionTRemove(T)See Also