6 references to BinarySearch
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Array.cs (1)
1339=> UnsafeArrayAsSpan<T>(array, adjustedIndex, length).BinarySearch(Unsafe.As<byte, T>(ref value.GetRawData()));
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (3)
4179BinarySearch((ReadOnlySpan<T>)span, comparable); 4225BinarySearch<T, IComparable<T>>(span, comparable); 4280return BinarySearch(span, comparable);
UIAutomationClientSideProviders (2)
MS\Internal\AutomationProxies\WinEventTracker.cs (2)
206int evt = EventIdToIndex.BinarySearch(eventId); 345int evt = EventIdToIndex.BinarySearch(evtIdProp._evtId);