Finds a subindex in the collection by its key selector.

Namespace:  C1.LiveLinq.Indexing
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public Subindex<T> Find(
	LambdaExpression keySelector
)
Visual Basic
Public Function Find ( _
	keySelector As LambdaExpression _
) As Subindex(Of T)

Parameters

keySelector
Type: System.Linq.Expressions..::..LambdaExpression
Key selector expression of an subindex, see KeySelector.

Return Value

A subindex with the given key selector, if it is found; otherwise, null.

See Also