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

Chương trình C # để lấy Danh sách các khóa từ Từ điển

Đặt các phần tử từ điển -

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

Để lấy chìa khóa, hãy sử dụng bộ sưu tập danh sách -

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

Lặp qua các phím và hiển thị chúng.

Đây là mã hoàn chỉnh -

Ví dụ

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

Đầu ra

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