5 references to BinarySearch
PresentationFramework (1)
System\Windows\Controls\Primitives\Selector.cs (1)
1986if (knownIndices.BinarySearch(0, knownCount, i, null) >= 0)
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Generic\List.cs (2)
313=> BinarySearch(0, Count, item, null); 316=> BinarySearch(0, Count, item, comparer);
System.Windows.Forms (2)
System\Windows\Forms\Controls\ComboBox\ComboBox.ObjectCollection.cs (1)
128index = InnerList.BinarySearch(index: 0, Count, entry, this);
System\Windows\Forms\Internal\ItemArray.cs (1)
288return _entries.BinarySearch(index: 0, Count, element, this);