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 entire list.
public LastIndexOf ( int value ) : int
value int The value to locate in the list.
return int
		public int LastIndexOf(int value)
		{
			return LastIndexOf(value,list.Count-1,list.Count);
		}

Same methods

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