Computer >> Máy Tính >  >> Lập trình >> C#

Sắp xếp các từ theo thứ tự từ vựng trong C #

Đầu tiên, đặt một mảng chuỗi -

string[] arr = new string[] {
   "Indian",
   "Moroccon",
   "American",
};

Để sắp xếp các từ theo thứ tự từ vựng -

var sort = from a in arr
orderby a
select a;

Ví dụ

Hãy cho chúng tôi xem mã hoàn chỉnh -

using System;
using System.Linq;
class Program {
   static void Main() {

      string[] arr = new string[] {
         "Indian",
         "Moroccon",
         "American",
      };
      var sort = from a in arr
      orderby a
      select a;

      foreach(string res in sort) {
         Console.WriteLine(res);
      }
   }
}

đầu ra

American
Indian
Moroccon