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

सी # में हाइब्रिड डिक्शनरी से सभी प्रविष्टियों को हटा रहा है

HybridDictionary से सभी प्रविष्टियों को हटाने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      HybridDictionary dict1 = new HybridDictionary();
      dict1.Add("A", "Books");
      dict1.Add("B", "Electronics");
      dict1.Add("C", "Smart Wearables");
      dict1.Add("D", "Pet Supplies");
      dict1.Add("E", "Clothing");
      dict1.Add("F", "Footwear");
      Console.WriteLine("HybridDictionary1 elements...");
      foreach(DictionaryEntry d in dict1){
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("Count of Key/value pairs in Dictionary1 = "+dict1.Count);
      HybridDictionary dict2 = new HybridDictionary();
      dict2.Add("1", "One");
      dict2.Add("2", "Two");
      dict2.Add("3", "Three");
      dict2.Add("4", "Four");
      dict2.Add("5", "Five");
      dict2.Add("6", "Six");
      Console.WriteLine("\nHybridDictionary2 elements...");
      foreach(DictionaryEntry d in dict2){
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("Count of Key/value pairs in Dictionary2 = "+dict1.Count);
      dict2.Clear();
      Console.WriteLine("Count of Key/value pairs in Dictionary2 (Updated) = "+dict2.Count);
   }
}

आउटपुट

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

HybridDictionary1 elements...
A Books
B Electronics
C Smart Wearables
D Pet Supplies
E Clothing
F Footwear
Count of Key/value pairs in Dictionary1 = 6

HybridDictionary2 elements...
1 One
2 Two
3 Three
4 Four
5 Five
6 Six
Count of Key/value pairs in Dictionary2 = 6
Count of Key/value pairs in Dictionary2 (Updated) = 0

उदाहरण

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

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      HybridDictionary dict = new HybridDictionary();
      dict.Add("One", "Accessories");
      dict.Add("Two", "Pet Supplies");
      Console.WriteLine("HybridDictionary elements...");
      foreach(DictionaryEntry d in dict){
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("Count of Key/value pairs in Dictionary = "+dict.Count);
   }
}

आउटपुट

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

HybridDictionary elements...
One Accessories
Two Pet Supplies
Count of Key/value pairs in Dictionary = 2

  1. सी # में लिंक्डलिस्ट से सभी नोड्स को हटा रहा है

    लिंक्डलिस्ट से सभी नोड्स को हटाने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections.Generic; public class Demo {    public static void Main() {       int [] num = {10, 20, 30, 40, 50};       LinkedList<int> list = new LinkedList<

  1. सी # में स्ट्रिंग डिक्शनरी से सभी प्रविष्टियों को हटा रहा है

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

  1. Google Chrome से स्वतः भरण प्रविष्टियां हटाना

    Google Chrome में एक विशेषता है जो सहेजी गई जानकारी के साथ फ़ॉर्म स्वचालित रूप से भर सकती है। जानकारी URL, उपयोगकर्ता नाम, पते, पासवर्ड या कोई भुगतान जानकारी हो सकती है। जब उपयोगकर्ता Google Chrome के रूप में नई जानकारी दर्ज करता है, तो कभी-कभी यह उपयोगकर्ता से अनुमति मांगता है कि क्या वे उस जानकारी