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

सी # में स्ट्रिंग डिक्शनरी से निर्दिष्ट कुंजी के साथ प्रविष्टि निकालें

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

उदाहरण

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringDictionary strDict1 = new StringDictionary();
      strDict1.Add("A", "John");
      strDict1.Add("B", "Andy");
      strDict1.Add("C", "Tim");
      strDict1.Add("D", "Ryan");
      strDict1.Add("E", "Kevin");
      strDict1.Add("F", "Katie");
      strDict1.Add("G", "Brad");
      Console.WriteLine("StringDictionary1 key-value pairs...");
      foreach(DictionaryEntry de in strDict1) {
         Console.WriteLine(de.Key + " " + de.Value);
      }
      strDict1.Remove("D");
         Console.WriteLine("\nStringDictionary1 key-value pairs after removing a key...");
      foreach(DictionaryEntry de in strDict1) {
         Console.WriteLine(de.Key + " " + de.Value);
      }
      StringDictionary strDict2 = new StringDictionary();
      strDict2.Add("1", "A");
      strDict2.Add("2", "B");
      strDict2.Add("3", "C");
      strDict2.Add("4", "D");
      strDict2.Add("5", "E");
      Console.WriteLine("\nStringDictionary2 key-value pairs...");
      IEnumerator demoEnum = strDict2.GetEnumerator();
      DictionaryEntry d;
      while (demoEnum.MoveNext()) {
         d = (DictionaryEntry)demoEnum.Current;
         Console.WriteLine("Key = " + d.Key + ", Value = " + d.Value);
      }
   }
}

आउटपुट

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

StringDictionary1 key-value pairs...
a John
b Andy
c Tim
d Ryan
e Kevin
f Katie
g Brad

StringDictionary1 key-value pairs after removing a key...
a John
b Andy
c Tim
e Kevin
f Katie
g Brad

StringDictionary2 key-value pairs...
Key = 1, Value = A
Key = 2, Value = B
Key = 3, Value = C
Key = 4, Value = D
Key = 5, Value = E

उदाहरण

आइए एक और उदाहरण देखें -

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringDictionary strDict1 = new StringDictionary();
      strDict1.Add("A", "One");
      strDict1.Add("B", "Two");
      strDict1.Add("C", "Three");
      strDict1.Add("D", "Four");
      strDict1.Add("E", "Five");
      Console.WriteLine("StringDictionary1 key-value pairs...");
      foreach(DictionaryEntry de in strDict1) {
         Console.WriteLine(de.Key + " " + de.Value);
      }
      strDict1.Remove("B");
      strDict1.Remove("C");
      Console.WriteLine("\nStringDictionary1 key-value pairs after removing a key...");
      foreach(DictionaryEntry de in strDict1) {
         Console.WriteLine(de.Key + " " + de.Value);
      }
   }
}

आउटपुट

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

StringDictionary1 key-value pairs...
a One
b Two
c Three
d Four
e Five

StringDictionary1 key-value pairs after removing a key...
a One
d Four
e Five

  1. विंडोज 10 से विंडोज डिक्रिपिफायर और डीब्लोएटर के साथ फ्लफ को हटा दें

    रिलीज के समय, विंडोज 10 माइक्रोसॉफ्ट का सबसे दुबला और मतलबी ओएस था। यह अपने पूर्ववर्ती, विंडोज 7 की तुलना में भी ज़िपर महसूस करता था, और IoT उपकरणों के साथ काम करने के लिए पर्याप्त कॉम्पैक्ट था। लेकिन वह तब था। आज विंडोज 10 ने इसे खत्म करने के लिए पर्याप्त फीचर्स जमा कर लिए हैं। हम उद्धरण चिह्नों क

  1. जांचें कि स्ट्रिंग डिक्शनरी में सी # में एक विशिष्ट कुंजी है या नहीं

    यह जांचने के लिए कि क्या स्ट्रिंग डिक्शनरी में एक विशिष्ट कुंजी है, कोड इस प्रकार है - उदाहरण using System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main(){       StringDictionary strDict1 = new StringDictionar

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

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