Finds an entity that matches a predicate.

Namespace:  Mindscape.LightSpeed
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public TEntity Find(
	Predicate<TEntity> match
)
Visual Basic (Declaration)
Public Function Find ( _
	match As Predicate(Of TEntity) _
) As TEntity

Parameters

match
Type: System..::.Predicate<(Of <(TEntity>)>)
The predicate that must be matched.

Return Value

The entity found based on the provided predicate.

See Also