Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#에서 목록을 정렬하는 방법은 무엇입니까?

<시간/>

C#에서 목록을 정렬하려면 Sort() 메서드를 사용하세요.

먼저 목록을 만들어 보겠습니다 -

List<string> myList = new List<string>();

이제 요소를 추가하십시오 -

myList.Add("Audi");
myList.Add("BMW");
myList.Add("Chevrolet");
myList.Add("Hyundai");

Sort() 메소드를 사용하여 목록을 정렬하십시오 -

myList.Sort();

다음은 C#에서 목록을 정렬하는 방법을 보여주는 예입니다 -

예시

using System;
using System.Collections.Generic;

class Demo {
   static void Main() {
      List<string> myList = new List<string>();

      myList.Add("Audi");
      myList.Add("BMW");
      myList.Add("Chevrolet");
      myList.Add("Hyundai");

      myList.Sort();

      foreach (string value in myList) {
         Console.WriteLine(value);
      }
   }
}

출력

Audi
BMW
Chevrolet
Hyundai