4 references to LastIndexOf
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (4)
src\Dependencies\Collections\Segmented\SegmentedArray.cs (3)
268
return
LastIndexOf
(array, value, array.Length - 1, array.Length, comparer: null);
273
return
LastIndexOf
(array, value, startIndex, array.Length == 0 ? 0 : startIndex + 1, comparer: null);
278
return
LastIndexOf
(array, value, startIndex, count, comparer: null);
src\Dependencies\Collections\Segmented\SegmentedList`1.cs (1)
1059
return SegmentedArray.
LastIndexOf
(_items, item, index, count, comparer);