| LodCollectionICollectionLodEntryContains Method |
Determines whether the
ICollectionT contains a specific value.
Namespace: DigitalRune.Graphics.SceneGraphAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax bool ICollection<LodEntry>.Contains(
LodEntry item
)
Private Function Contains (
item As LodEntry
) As Boolean Implements ICollection(Of LodEntry).Contains
private:
virtual bool Contains(
LodEntry item
) sealed = ICollection<LodEntry>::Contains
private abstract Contains :
item : LodEntry -> bool
private override Contains :
item : LodEntry -> bool
Parameters
- item
- Type: DigitalRune.Graphics.SceneGraphLodEntry
The object to locate in the ICollectionT.
Return Value
Type:
Boolean if
item is found in the
ICollectionT; otherwise,
.
Implements
ICollectionTContains(T)See Also