views:

292

answers:

2

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

+3  A: 

It uses the QuickSort algorithm.

Source:

CMS
Question: unless the OP asked specifically about .NET 1.1, why give him a link to .NET 1.1 documentation?
John Saunders
@John: Thanks, didn't noticed, link fixed...
CMS
A: 

It uses quick sort for sorting purpose

Ngu Soon Hui