কম্পিউটার

হ্যাশটেবল সি#-এ কী সমন্বিত একটি IC Collection পান


হ্যাশটেবলে কী সমন্বিত একটি IC Collection পেতে, কোডটি নিম্নরূপ -

উদাহরণ

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      Hashtable hash = new Hashtable();
      hash.Add("A", "Electronics");
      hash.Add("B", "Appliances");
      hash.Add("C", "Pet Supplies");
      hash.Add("D", "Books");
      hash.Add("E", "Toys");
      hash.Add("F", "Footwear");
      hash.Add("G", "Clothing");
      ICollection col = hash.Keys;
      foreach(string str in col)
      Console.WriteLine(str + ": " + hash[str]);
   }
}

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
G: Clothing
A: Electronics
B: Appliances
C: Pet Supplies
D: Books
E: Toys
F: Footwear

উদাহরণ

আসুন আরেকটি উদাহরণ দেখি -

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      Hashtable hash = new Hashtable();
      hash.Add(1, "AB");
      hash.Add(2, "CD");
      hash.Add(3, "EF");
      hash.Add(4, "GH");
      hash.Add(5, "IJ");
      hash.Add(6, "KL");
      hash.Add(7, "MN");
      ICollection col = hash.Keys;
      foreach(int str in col)
      Console.WriteLine("Key = " + str + ", Value = " + hash[str]);
   }
}

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
Key = 7, Value = MN
Key = 6, Value = KL
Key = 5, Value = IJ
Key = 4, Value = GH
Key = 3, Value = EF
Key = 2, Value = CD
Key = 1, Value = AB

  1. হ্যাশটেবলে C# এ একটি নির্দিষ্ট কী রয়েছে কিনা তা পরীক্ষা করুন

  2. হ্যাশটেবলে C# এ একটি নির্দিষ্ট মান রয়েছে কিনা তা পরীক্ষা করুন

  3. C# এ হ্যাশটেবল ক্লাসের কী সম্পত্তি কী?

  4. একটি অভিধান থেকে কীগুলির তালিকা পেতে C# প্রোগ্রাম