src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (6)
1328return _list.IndexOf(value, startIndex, count);
1759return _list.IndexOf(value, startIndex, count);
2014return _list.IndexOf(value, startIndex, count);
2356int i = _baseList.IndexOf(value, _baseIndex, _baseSize);
2368int i = _baseList.IndexOf(value, _baseIndex + startIndex, _baseSize - startIndex);
2382int i = _baseList.IndexOf(value, _baseIndex + startIndex, count);