> For the complete documentation index, see [llms.txt](https://andreyakinshin.gitbook.io/problembookdotnet/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://andreyakinshin.gitbook.io/problembookdotnet/en/strings/stablesorting-s.md).

# “StableSorting” (Solution)

## Answer

Yes.

## Explanation

The standard sorting .NET is unstable, which means that if we, say, sort rows insensitive, the strings `"AAA"` and `"aaa"` can accommodate in any order.

[Problem](/problembookdotnet/en/strings/stablesorting-p.md)
