2021年1月22日星期五

C# Sorting element inside an array

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);  }  
https://stackoverflow.com/questions/65855329/c-sharp-sorting-element-inside-an-array January 23, 2021 at 11:06AM

没有评论:

发表评论