কম্পিউটার

C# এ OrderedDictionary থেকে নির্দিষ্ট কী সহ এন্ট্রি সরান


C# এ OrdererdDictionary থেকে নির্দিষ্ট কী দিয়ে এন্ট্রি অপসারণ করতে, কোডটি নিম্নরূপ -

উদাহরণ

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      OrderedDictionary dict = new OrderedDictionary();
      dict.Add("A", "Books");
      dict.Add("B", "Electronics");
      dict.Add("C", "Smart Wearables");
      dict.Add("D", "Pet Supplies");
      dict.Add("E", "Clothing");
      dict.Add("F", "Footwear");
      Console.WriteLine("OrderedDictionary elements...");
      foreach(DictionaryEntry d in dict) {
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("Count of elements in OrderedDictionary = " + dict.Count);
      dict.Remove("E");
      Console.WriteLine("Count of elements in OrderedDictionary (Updated)= " + dict.Count);
   }
}

আউটপুট

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

তৈরি করবে
OrderedDictionary elements...
A Books
B Electronics
C Smart Wearables
D Pet Supplies
E Clothing
F Footwear
Count of elements in OrderedDictionary = 6
Count of elements in OrderedDictionary (Updated)= 5

উদাহরণ

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

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      OrderedDictionary dict = new OrderedDictionary();
      dict.Add("A", "One");
      dict.Add("B", "Two");
      dict.Add("C", "Three");
      dict.Add("D", "Four");
      Console.WriteLine("OrderedDictionary elements...");
      foreach(DictionaryEntry d in dict) {
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("Count of elements in OrderedDictionary = " + dict.Count);
      dict.Remove("C");
      dict.Remove("D");
      Console.WriteLine("Count of elements in OrderedDictionary (Updated)= " + dict.Count);
   }
}

আউটপুট

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

তৈরি করবে
OrderedDictionary elements...
A One
B Two
C Three
D Four
Count of elements in OrderedDictionary = 4
Count of elements in OrderedDictionary (Updated)= 2

  1. C# এ OrderedDictionary থেকে সমস্ত উপাদান সরান

  2. C# এ নির্দিষ্ট প্রাথমিক আকার সহ একটি হাইব্রিড অভিধান তৈরি করা

  3. পাইথন - অভিধান থেকে একটি কী সরানোর উপায়

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