Collections Collections
Collections Collections
DocFX + Singulink = ♥

Search Results for

    Method FindLastIndex

    FindLastIndex(int, int, Predicate<T>)

    Searches for an item that matches the conditions defined by the specified predicate, and returns the index of the last occurrence within the range of items in the list that contains the specified number of items and ends at the specified index.

    Declaration
    public int FindLastIndex(int startIndex, int count, Predicate<T> match)
    Parameters
    Type Name Description
    int startIndex
    int count
    Predicate<T> match
    Returns
    Type Description
    int

    FindLastIndex(int, Predicate<T>)

    Searches for an item that matches the conditions defined by the specified predicate, and returns the index of the last occurrence within the range of items in the list that extends from the first item to the specified index.

    Declaration
    public int FindLastIndex(int startIndex, Predicate<T> match)
    Parameters
    Type Name Description
    int startIndex
    Predicate<T> match
    Returns
    Type Description
    int

    FindLastIndex(Predicate<T>)

    Searches for an item that matches the conditions defined by the specified predicate, and returns the index of the last occurrence within the entire list.

    Declaration
    public int FindLastIndex(Predicate<T> match)
    Parameters
    Type Name Description
    Predicate<T> match
    Returns
    Type Description
    int
    © Singulink. All rights reserved.