Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

เรียงลำดับคำศัพท์ในภาษา C#


ขั้นแรก ตั้งค่าอาร์เรย์สตริง −

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

การเรียงลำดับคำศัพท์ -

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

ตัวอย่าง

ให้เราดูรหัสที่สมบูรณ์ -

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);
      }
   }
}

ผลลัพธ์

American
Indian
Moroccon