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