| LodCollectionICollectionLodEntryRemove Method |
Removes the first occurrence of a specific object from the
ICollectionT.
Namespace: DigitalRune.Graphics.SceneGraphAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax bool ICollection<LodEntry>.Remove(
LodEntry item
)
Private Function Remove (
item As LodEntry
) As Boolean Implements ICollection(Of LodEntry).Remove
private:
virtual bool Remove(
LodEntry item
) sealed = ICollection<LodEntry>::Remove
private abstract Remove :
item : LodEntry -> bool
private override Remove :
item : LodEntry -> bool
Parameters
- item
- Type: DigitalRune.Graphics.SceneGraphLodEntry
The object to remove from the ICollectionT.
Return Value
Type:
Boolean if
item was successfully removed from the
ICollectionT; otherwise,
. This method also returns
if
item is not found in the original
ICollectionT.
Implements
ICollectionTRemove(T)See Also