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