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

จะสร้างพจนานุกรมโดยใช้ C # ได้อย่างไร?


พจนานุกรมคือชุดของคีย์และค่าต่างๆ ใน ​​C # Dictionary รวมอยู่ในเนมสเปซ System.Collection.Generics

ในการสร้างพจนานุกรม คุณต้องตั้งค่าและเพิ่มคีย์และค่าก่อน ที่นี่เราได้เพิ่ม 5 ปุ่มพร้อมค่าลงในพจนานุกรม เราได้ตั้งค่าคีย์และประเภทค่าเป็น int แล้ว

IDictionary<int, int> d = new Dictionary<int, int>();
d.Add(1,44);
d.Add(2,34);
d.Add(3,66);
d.Add(4,47);
d.Add(5,76);

ต่อไปนี้เป็นรหัสที่สมบูรณ์ -

ตัวอย่าง

using System;
using System.Collections.Generic;

public class Demo {
   public static void Main() {
      IDictionary<int, int> d = new Dictionary<int, int>();
      d.Add(1,44);
      d.Add(2,34);
      d.Add(3,66);
      d.Add(4,47);
      d.Add(5,76);

      Console.WriteLine(d.Count);
   }
}