ExtendedBindingList<T>.FindIndex Method

There are three overloads for this method.

Overload List

FindIndex(Predicate<T>) Search for the first item that matches the conditions defined by the specified predicate and return its zero-based index.
FindIndex(Int32, Predicate<T>) Search for the first item that matches the conditions defined by the specified predicate between the starting index and the end of the collection and return its zero-based index.
FindIndex(Int32, Int32, Predicate<T>) Search for the first item that matches the conditions defined by the specified predicate between the starting index and the given number of items and return its zero-based index.

See Also