I have strings like this:
var a = \"ABCFE\";
Is there a simple way that I can sort this string into:
ABCEF
You can use this
string x = "ABCGH" char[] charX = x.ToCharArray(); Array.Sort(charX);
This will sort your string.