1 instantiation of ArraySortHelper
mscorlib (1)
system\collections\generic\arraysorthelper.cs (1)
121
defaultArraySortHelper = new
ArraySortHelper
<T>();
7 references to ArraySortHelper
mscorlib (7)
system\array.cs (2)
1026
return
ArraySortHelper
<T>.Default.BinarySearch(array, index, length, value, comparer);
1848
ArraySortHelper
<T>.Default.Sort(array, index, length, comparer);
system\collections\generic\arraysorthelper.cs (3)
514
ArraySortHelper
<T>.IntrospectiveSort(keys, index, length, comparer);
518
ArraySortHelper
<T>.DepthLimitedQuickSort(keys, index, length + index - 1, comparer, IntrospectiveSortUtilities.QuickSortDepthThreshold);
546
return
ArraySortHelper
<T>.InternalBinarySearch(array, index, length, value, comparer);
system\diagnostics\eventing\eventsource.cs (1)
6520
ArraySortHelper
<string>.IntrospectiveSort(sortedStrings, 0, sortedStrings.Length, Comparer<string>.Default);
system\rttype.cs (1)
3080
ArraySortHelper
<ConstructorInfo>.IntrospectiveSort(constructors, 0, constructors.Length, ConstructorInfoComparer.SortByMetadataToken);