Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C#

सी # में ऑर्डर्ड डिक्शनरी से निर्दिष्ट इंडेक्स पर प्रविष्टि हटाएं

ऑर्डरर्ड डिक्शनरी से निर्दिष्ट इंडेक्स पर प्रविष्टि को हटाने के लिए, कोड इस प्रकार है -

उदाहरण

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.RemoveAt(4);
      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("1", "AB");
      dict.Add("2", "CD");
      dict.Add("3", "MN");
      dict.Add("4", "PQ");
      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.RemoveAt(1);
      dict.RemoveAt(2);
      Console.WriteLine("Count of elements in OrderedDictionary (Updated)= " + dict.Count);
   }
}

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

OrderedDictionary elements...
1 AB
2 CD
3 MN
4 PQ
Count of elements in OrderedDictionary = 4
Count of elements in OrderedDictionary (Updated)= 2

  1. सी # में सॉर्टेडसेट से एक निर्दिष्ट आइटम निकालें

    SortedSet से किसी निर्दिष्ट आइटम को हटाने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections.Generic; public class Demo {    public static void Main(){       SortedSet<string> set1 = new SortedSet<string>();       set1.Add(&qu

  1. सी # में ऑर्डर्ड डिक्शनरी से सभी तत्वों को हटा दें

    OrderedDictionary से सभी तत्वों को हटाने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main(){       OrderedDictionary dict = new OrderedDictionary();     &n

  1. पायथन पांडा - श्रेणीबद्ध इंडेक्स से निर्दिष्ट श्रेणियों को हटा दें

    CategoricalIndex से निर्दिष्ट श्रेणियों को निकालने के लिए, remove_categories() का उपयोग करें पंडों में विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd श्रेणियों पैरामीटर का उपयोग करके श्रेणीबद्ध के लिए श्रेणियां सेट करें। आदेशित पैरामीटर - . का उपयोग करके श्रेणीबद्ध के रूप म