Do any one know which sorting algorithm is used by .net when we implement IComparer in our class?
|
|
You can always use the Reflector to open that bad boy up and look for yourself. |
||
|
|
|
QuickSort seems to be it. The documentation on IComparer says
The Array.Sort documentation says
|
|||
|
|
|
|
According to the MSDN, .NET uses QuickSort. By the way, the method absolutely doesn't depend on the comparer (as long as it's comparison-based), why should .NET therefore use a different method depending on whether you provide a custom comparer or not? |
|||
|
|
