4,815 questions
The code is open.
https://github.com/microsoft/referencesource/blob/master/mscorlib/system/array.cs
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
It uses the QuickSort algorithm.
Is it true?
As discussed in the docs for this method it depends on what version you're talking about. .NET Framework versions prior to 4.5 used quick sort. Starting with .NET 4.5 it uses introspective sorting. Refer to the docs for links on the algorithms.