Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DXObservableCollection<T>.FindIndex(Int32, Int32, Predicate<T>) Method

Returns the first item index that matches search conditions in the specified range.

Namespace: DevExpress.Maui.Mvvm

Assembly: DevExpress.Maui.Mvvm.dll

NuGet Package: DevExpress.Maui.Mvvm

#Declaration

C#
public int FindIndex(
    int startIndex,
    int count,
    Predicate<T> match
)

#Parameters

Name Type Description
startIndex Int32

The first item index in the search range.

count Int32

The number of items in the search range.

match Predicate<T>

A delegate that defines search conditions.

#Returns

Type Description
Int32

The first item index that matches conditions in the specified range.

See Also