10 references to BinarySearch
mscorlib (6)
system\array.cs (3)
991return BinarySearch<T>(array, 0, array.Length, value, null); 1000return BinarySearch<T>(array, 0, array.Length, value, comparer); 1006return BinarySearch<T>(array, index, length, value, null);
system\collections\generic\list.cs (1)
286return Array.BinarySearch<T>(_items, index, count, item, comparer);
system\runtime\interopservices\windowsruntime\constantsplittablemap.cs (2)
192int index = Array.BinarySearch(items, firstItemIndex, Count, searchKey, keyValuePairComparator); 199int index = Array.BinarySearch(items, firstItemIndex, Count, searchKey, keyValuePairComparator);
System (4)
compmod\system\collections\generic\sortedlist.cs (4)
179int i = Array.BinarySearch<TKey>(keys, 0, _size, key, comparer); 534int i = Array.BinarySearch<TKey>(keys, 0, _size, key, comparer); 587int ret = Array.BinarySearch<TKey>(keys, 0, _size, key, comparer); 998int i = Array.BinarySearch<TKey>(_dict.keys, 0,