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