কম্পিউটার

C# অভিধানে কী-মান জোড়া যোগ করুন


C# ডিকশনারিতে কী-ভ্যালু পেয়ার যোগ করতে প্রথমে একটি ডিকশনারী ঘোষণা করুন।

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

এখন, KeyValuePair-এর সাথে উপাদান যোগ করুন।

d.Add(new KeyValuePair<int, string>(1, "TVs"));
d.Add(new KeyValuePair<int, string>(2, "Appliances"));
d.Add(new KeyValuePair<int, string>(3, "Mobile"));

উপাদান যোগ করার পর, আসুন কী-মান জোড়া প্রদর্শন করি।

উদাহরণ

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      IDictionary<int, string> d = new Dictionary<int, string>();
      d.Add(new KeyValuePair<int, string>(1, "TVs"));
      d.Add(new KeyValuePair<int, string>(2, "Appliances"));
      d.Add(new KeyValuePair<int, string>(3, "Mobile"));
      d.Add(new KeyValuePair<int, string>(4, "Tablet"));
      d.Add(new KeyValuePair<int, string>(5, "Laptop"));
      d.Add(new KeyValuePair<int, string>(6, "Desktop"));
      d.Add(new KeyValuePair<int, string>(7, "Hard Drive"));
      d.Add(new KeyValuePair<int, string>(8, "Flash Drive"));
      foreach (KeyValuePair<int, string> ele in d) {
         Console.WriteLine("Key = {0}, Value = {1}", ele.Key, ele.Value);
      }
   }
}

আউটপুট

Key = 1, Value = TVs
Key = 2, Value = Appliances
Key = 3, Value = Mobile
Key = 4, Value = Tablet
Key = 5, Value = Laptop
Key = 6, Value = Desktop
Key = 7, Value = Hard Drive
Key = 8, Value = Flash Drive

  1. Windows 10 এর অভিধানে শব্দ যোগ বা সরানো কিভাবে

  2. পাইথন অভিধানে কী-মান অ্যাক্সেস করা

  3. পাইথনে অভিধানে একটি মূল মান জোড়া যোগ করুন

  4. কিভাবে পাইথনে একটি অভিধানে নতুন কী যোগ করবেন?