| Overload | Description |
|---|---|
| Sort<T>(T[]) | Sorts the contents of the array using a stable merge-sort with O(n) additional memory |
| Sort<T>(T[],IComparer<T>) | Sorts the contents of the array using a stable merge-sort with O(n) additional memory |
| Sort<T>(T[],Int32,Int32,IComparer<T>) | Sorts the contents of the array using a stable merge-sort with O(n) additional memory |
| Sort<T>(T[],Comparison<T>) | Sorts the contents of the array using a stable merge-sort with O(n) additional memory |
| Sort<T>(T[],Int32,Int32,Comparison<T>) | Sorts the contents of the array using a stable merge-sort with O(n) additional memory |
Target Platforms: Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, Windows 7