9 references to BinarySearch
mscorlib (5)
system\globalization\culturedata.cs (1)
1088return Array.BinarySearch(replacementCultureNames, name) >= 0;
system\resources\resourcereader.cs (1)
1221int index = Array.BinarySearch(sortedDataPositions, dataPos);
system\rttype.cs (2)
4145return (Array.BinarySearch(ulValues, ulValue) >= 0); 4172int index = Array.BinarySearch(ulValues, ulValue);
system\type.cs (1)
1570return Array.BinarySearch(ulArray, ulValue);
System.Web.Mobile (1)
UI\MobileControls\MobileControl.cs (1)
530if (Array.BinarySearch(_ignoredCustomAttributes, keyLower) < 0)
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\CompileXomlTask.cs (1)
1289if (Array.BinarySearch(cultureInfoStrings, cultureString.ToLowerInvariant()) < 0)
UIAutomationClientsideProviders (2)
MS\Internal\AutomationProxies\WinEventTracker.cs (2)
220int evt = Array.BinarySearch(_eventIdToIndex, eventId); 363int evt = Array.BinarySearch (_eventIdToIndex, evtIdProp._evtId);