কম্পিউটার

C# এ একটি খালি কেস-সংবেদনশীল হাইব্রিড ডিকশনারি ক্লাস তৈরি করা হচ্ছে


একটি খালি কেস-সংবেদনশীল হাইব্রিড ডিকশনারি তৈরি করতে, কোডটি নিম্নরূপ -

উদাহরণ

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      HybridDictionary dict = new HybridDictionary(false);
      dict.Add("A", "AB");
      dict.Add("B", "BC");
      dict.Add("C", "DE");
      dict.Add("D", "de");
      Console.WriteLine("Key/Value pairs...");
      foreach(DictionaryEntry de in dict)
         Console.WriteLine("Key = "+de.Key + ", Value = " + de.Value);
   }
}

আউটপুট

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

তৈরি করবে
Key/Value pairs...
Key = A, Value = AB
Key = B, Value = BC
Key = C, Value = DE
Key = D, Value = de

উদাহরণ

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

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      HybridDictionary dict = new HybridDictionary(true);
      dict.Add("A", "AB");
      dict.Add("B", "BC");
      dict.Add("C", "DE");
      dict.Add("D", "de");
      dict.Add("e", "FG");
      dict.Add("F", "gh");
      Console.WriteLine("Key/Value pairs...");
      foreach(DictionaryEntry de in dict)
      Console.WriteLine("Key = "+de.Key + ", Value = " + de.Value);
   }
}

আউটপুট

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

তৈরি করবে
Key/Value pairs...
Key = A, Value = AB
Key = B, Value = BC
Key = C, Value = DE
Key = D, Value = de
Key = e, Value = FG
Key = F, Value = gh

  1. C# এ কনসোল ক্লাস

  2. C# এ ক্লাস

  3. পাইথনে ন্যারে-লিস্টের ডিক্ট থেকে ডেটাফ্রেম তৈরি করা

  4. পাইথনে ক্লাস তৈরি করা