Search code examples
c#.netalgorithmsorting

Which sorting algorithm is used by .NET's Array.Sort() method?


Which sorting algorithm is used by .NET's Array.Sort() method?


Solution

  • It uses the QuickSort algorithm.

    Source: