Computer >> 컴퓨터 >  >> 프로그래밍 >> C#

C#에서 SortedList 개체의 키 목록 가져오는 방법

C# SortedList의 키 목록 가져오기

C#에서 SortedList 개체에 저장된 키 목록을 가져오려면 GetKeyList() 메서드를 사용합니다. 이 메서드는 SortedList에 포함된 모든 키를 IList 형태로 반환하며, SortedList의 특성상 키는 항상 정렬된 순서대로 제공됩니다.

예제 1

다음은 두 개의 SortedList 개체를 생성하고, 각 개체의 전체 요소와 키 목록을 출력하는 예제입니다.

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      SortedList list1 = new SortedList();
      list1.Add("One", 1);
      list1.Add("Two ", 2);
      list1.Add("Three ", 3);
      list1.Add("Four", 4);
      list1.Add("Five", 5);
      list1.Add("Six", 6);
      list1.Add("Seven ", 7);
      list1.Add("Eight ", 8);
      list1.Add("Nine", 9);
      list1.Add("Ten", 10);
      Console.WriteLine("SortedList1 elements...");
      foreach(DictionaryEntry d in list1) {
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("\nList of keys...SortedList1");
      IList list = list1.GetKeyList();
      foreach(string res in list)
      Console.WriteLine(res);
      SortedList list2 = new SortedList();
      list2.Add("A", "Accessories");
      list2.Add("B", "Books");
      list2.Add("C", "Smart Wearable Tech");
      list2.Add("D", "Home Appliances");
      Console.WriteLine("\nSortedList2 elements...");
      foreach(DictionaryEntry d in list2) {
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("\nList of keys...SortedList2");
      list = list2.GetKeyList();
      foreach(string res in list)
         Console.WriteLine(res);
   }
}

출력 결과

위 코드를 실행하면 다음과 같은 결과가 출력됩니다.

SortedList1 elements...
Eight  8
Five 5
Four 4
Nine 9
One 1
Seven  7
Six 6
Ten 10
Three  3
Two  2
List of keys...SortedList1
Eight
Five
Four
Nine
One
Seven
Six
Ten
Three
Two
SortedList2 elements...
A Accessories
B Books
C Smart Wearable Tech
D Home Appliances
List of keys...SortedList2
A
B
C
D

예제 2

이번에는 하나의 SortedList에서 키 목록만 추출하여 출력하는 더 간단한 예제를 살펴보겠습니다.

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      SortedList list = new SortedList();
      list.Add("One", 1);
      list.Add("Two ", 2);
      list.Add("Three ", 3);
      list.Add("Four", 4);
      list.Add("Five", 5);
      Console.WriteLine("SortedList elements...");
      foreach(DictionaryEntry d in list) {
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("\nList of keys...SortedList");
      IList col = list.GetKeyList();
      foreach(string res in col)
         Console.WriteLine(res);
   }
}

출력 결과

실행 결과는 다음과 같습니다.

SortedList elements...
Five 5
Four 4
One 1
Three  3
Two  2
List of keys...SortedList
Five
Four
One
Three
Two

정리

GetKeyList() 메서드는 SortedList의 모든 키를 IList로 반환하므로, foreach 문을 사용해 손쉽게 순회하면서 각 키를 처리할 수 있습니다. 참고로 키가 아닌 값(value) 목록이 필요한 경우에는 GetValueList() 메서드를 사용하면 됩니다.