5 references to IndexOf
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Array.cs (2)
1346return IndexOf(array, value, array.GetLowerBound(0), array.Length); 1360return IndexOf(array, value, startIndex, array.Length - startIndex + lb);
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (3)
344return Array.IndexOf((Array)_items, value, 0, _size); 360return Array.IndexOf((Array)_items, value, startIndex, _size - startIndex); 377return Array.IndexOf((Array)_items, value, startIndex, count);