Array.Sort<'T> Method ('T[])
Sorts the elements in an entire Array using the IComparable<'T> generic interface implementation of each element of the Array.
Assembly: mscorlib (in mscorlib.dll)
| Exception | Condition |
|---|---|
| ArgumentNullException | array is null. |
| InvalidOperationException | One or more elements in array do not implement the IComparable<'T> generic interface. |
Each element of array must implement the IComparable<'T> generic interface to be capable of comparisons with every other element in array.
If the sort is not successfully completed, the results are undefined.
This method uses the introspective sort (introsort) algorithm as follows:
If the partition size is fewer than 16 elements, it uses an insertion sort algorithm.
If the number of partitions exceeds 2 * LogN, where N is the range of the input array, it uses a Heapsort algorithm.
Otherwise, it uses a Quicksort algorithm.
This implementation performs an unstable sort; that is, if two elements are equal, their order might not be preserved. In contrast, a stable sort preserves the order of elements that are equal.
For arrays that are sorted by using the Heapsort and Quicksort algorithms, in the worst case, this method is an O(n log n) operation, where n is the Length of array.
The following code example demonstrates the Sort<'T>('T[]) generic method overload and theBinarySearch<'T>('T[], 'T) generic method overload. An array of strings is created, in no particular order.
The array is displayed, sorted, and displayed again.
Note |
|---|
The calls to the Sort<'T> and BinarySearch<'T> generic methods do not look any different from calls to their nongeneric counterparts, because Visual Basic, C#, and C++ infer the type of the generic type parameter from the type of the first argument. If you use the Ildasm.exe (IL Disassembler) to examine the Microsoft intermediate language (MSIL), you can see that the generic methods are being called. |
The BinarySearch<'T>('T[], 'T) generic method overload is then used to search for two strings, one that is not in the array and one that is. The array and the return value of the BinarySearch<'T> method are passed to the ShowWhere generic method, which displays the index value if the string is found, and otherwise the elements the search string would fall between if it were in the array. The index is negative if the string is not n the array, so the ShowWhere method takes the bitwise complement (the ~ operator in C# and Visual C++, Xor -1 in Visual Basic) to obtain the index of the first element in the list that is larger than the search string.
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
