com.calitha.commons.IntegerList.LastIndexOf C# (CSharp) Method

LastIndexOf() public method

Searches for the specified value and returns the zero-based index of the last occurrence within the section of the list that extends from the first element to the specified index
public LastIndexOf ( int value, int startIndex ) : int
value int The value to search for.
startIndex int The zero-based starting index of the backward search.
return int
		public int LastIndexOf(int value, int startIndex)
		{
			return LastIndexOf(value,startIndex,startIndex+1);
		}

Same methods

IntegerList::LastIndexOf ( int value ) : int
IntegerList::LastIndexOf ( int value, int startIndex, int count ) : int