using System; using System.Globalization; using System.Threading; namespace Dachie { class Program { static void Main(string[] args) { string[] arr = { "3", "1", "2", "b", "c", "a", "BB", "A", "C", "阿尔巴尼亚", "一刀切", "二刀切", "三刀切" }; //笔画数 LCID:0x00020804 CultureInfo StrokCi = new CultureInfo(133124); Thread.CurrentThread.CurrentCulture = StrokCi; Array.Sort(arr); Console.WriteLine("按笔划数排序:"); for (int i = arr.GetLowerBound(0); i <= arr.GetUpperBound(0); i++) Console.WriteLine("[{0}]:\t{1}", i, arr.GetValue(i)); } } }

相关文章:

  • 2021-12-19
  • 2022-12-23
  • 2021-10-03
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-23
  • 2021-11-18
  • 2022-12-23
  • 2021-07-17
  • 2021-07-05
相关资源
相似解决方案