Skip to main content
A newer version of this page is available. .

NotifyingCollection<T>.FindFirst(Predicate<T>) Method

Returns the first item that matches the specified predicate.

Namespace: DevExpress.DataAccess

Assembly: DevExpress.Dashboard.v19.2.Core.dll

Declaration

public T FindFirst(
    Predicate<T> match
)

Parameters

Name Type Description
match Predicate<T>

A System.Predicate that specifies the condition used to obtain the first item.

Returns

Type Description
T

A T object representing the first item that matches the specified predicate.

See Also