Skip to main content

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

Returns the first item that matches the specified predicate.

Namespace: DevExpress.DataAccess

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

NuGet Package: DevExpress.Dashboard.Core

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