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

IndexOf() public method

Searches for the specified Object and returns the zero-based index of the first occurrence within the entire list.
public IndexOf ( int value ) : int
value int The value to locate in the list.
return int
		public int IndexOf(int value)
		{
			return IndexOf(value,0,list.Count);
		}

Same methods

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