I'm trying to do a sorting for my result.
Eg: result = 04,07,01,57,83,39
Expect: result = 01,04,07,39,57,83
I have been try use array.sort, but the result will be return like ,,,,,00013345778
So is there any solution to get my expect result?
This is the code I try to do:
String result = 04,07,01,57,83,39;
Sorting(result);
public static string Sorting(string input)
{
char[] characters = input.ToArray();
Array.Sort(characters);
return new string(characters);
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…