5 references to LastIndexOf
System.Collections.Immutable (2)
System\Collections\Immutable\ImmutableArray_1.Builder.cs (1)
901return Array.LastIndexOf(_elements, item, startIndex, count);
System\Collections\Immutable\ImmutableArray_1.cs (1)
267return Array.LastIndexOf(self.array!, item, startIndex, count);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Array.cs (2)
1715return LastIndexOf(array, value, array.Length - 1, array.Length); 1725return LastIndexOf(array, value, startIndex, (array.Length == 0) ? 0 : (startIndex + 1));
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\List.cs (1)
935return Array.LastIndexOf(_items, item, index, count);