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