Is the sorting algorithm used by .NET\'s Array.Sort() method a stable algorithm?
Array.Sort()
No, it isn't:
This method uses the QuickSort algorithm. This implementation performs an unstable sort