5 overrides of IndexOf
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (5)
863public override int IndexOf(object? value, int startIndex, int count) 1324public override int IndexOf(object? value, int startIndex, int count) 1757public override int IndexOf(object? value, int startIndex, int count) 2012public override int IndexOf(object? value, int startIndex, int count) 2373public override int IndexOf(object? value, int startIndex, int count)
6 references to IndexOf
System.Private.CoreLib (6)
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);