কম্পিউটার

C# এ স্ট্রিংডিকশনারিতে কী এবং মান যোগ করুন


স্ট্রিংডিকশনারিতে কী এবং মান যোগ করতে, কোডটি নিম্নরূপ -

উদাহরণ

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringDictionary strDict = new StringDictionary();
      strDict.Add("A", "John");
      strDict.Add("B", "Andy");
      strDict.Add("C", "Tim");
      strDict.Add("D", "Ryan");
      strDict.Add("E", "Kevin");
      strDict.Add("F", "Katie");
      strDict.Add("G", "Brad");
      Console.WriteLine("StringDictionary elements...");
      foreach(DictionaryEntry de in strDict) {
         Console.WriteLine(de.Key + " " + de.Value);
      }
   }
}

আউটপুট

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

তৈরি করবে
StringDictionary elements...
a John
b Andy
c Tim
d Ryan
e Kevin
f Katie
g Brad

উদাহরণ

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

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringDictionary strDict = new StringDictionary();
      strDict.Add("1", "Electric Cars");
      strDict.Add("2", "SUV");
      strDict.Add("3", "AUV");
      Console.WriteLine("StringDictionary elements...");
      foreach(DictionaryEntry de in strDict) {
         Console.WriteLine(de.Key + " " + de.Value);
      }
   }
}

আউটপুট

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

তৈরি করবে
StringDictionary elements...
1 Electric Cars
2 SUV
3 AUV

  1. ডিকশনারী। C# এ Add() পদ্ধতি

  2. C# মান Tuple

  3. C# এ হ্যাশটেবল এবং অভিধানের সাথে কাজ করা

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