3 references to LastIndexOf
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Array.cs (2)
1571return LastIndexOf(array, value, array.Length - 1 + lb, array.Length); 1584return LastIndexOf(array, value, startIndex, startIndex + 1 - lb);
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (1)
480return Array.LastIndexOf((Array)_items, value, startIndex, count);