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

사전에서 키 목록을 가져오는 C# 프로그램

<시간/>

사전 요소 설정 -

Dictionary<int, string> d = new Dictionary<int, string>();

// dictionary elements
d.Add(1, "One");
d.Add(2, "Two");
d.Add(3, "Three");
d.Add(4, "Four");
d.Add(5, "Five");
d.Add(6, "Six");
d.Add(7, "Seven");
d.Add(8, "Eight");

키를 얻으려면 목록 컬렉션을 사용하십시오 -

List<int> keys = new List<int>(d.Keys);

키를 반복하여 표시합니다.

다음은 전체 코드입니다 -

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      Dictionary<int, string> d = new Dictionary<int, string>();
      // dictionary elements
      d.Add(1, "One");
      d.Add(2, "Two");
      d.Add(3, "Three");
      d.Add(4, "Four");
      d.Add(5, "Five");
      d.Add(6, "Six");
      d.Add(7, "Seven");
      d.Add(8, "Eight");
      // getting keys
      List<int> keys = new List<int>(d.Keys);
      Console.WriteLine("Displaying keys...");
      foreach (int res in keys) {
         Console.WriteLine(res);
      }
   }
}

출력

Displaying keys...
1
2
3
4
5
6
7
8