Method FindLast
FindLast(T, out int, IComparer<T>)
Finds the last occurrence of the given object that satisfies searching criteria.
public bool FindLast(T obj, out int index, IComparer<T> comparer)
Parameters
obj
TObject to find.
index
intReceive index of the found object in the sorted list.
comparer
IComparer<T>Object that exposes a method to compare two objects.
Returns
- bool
True if the find succeed; otherwise false.
FindLast(object, out int, IComparer)
Finds the last occurrence of the given object that satisfies searching criteria.
public bool FindLast(object obj, out int index, IComparer comparer)
Parameters
obj
objectObject to find.
index
intReceive index of the found object in the sorted list.
comparer
IComparerObject that exposes a method to compare two objects.
Returns
- bool
True if the find succeed; otherwise false.