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

सी # में हाइब्रिड डिक्शनरी में निर्दिष्ट कुंजी और मान जोड़ना


HybridDictionary में निर्दिष्ट कुंजी और मान जोड़ने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      HybridDictionary dict = new HybridDictionary();
      dict.Add("A", "Bags");
      dict.Add("B", "Electronics");
      dict.Add("C", "Smart Wearables");
      dict.Add("D", "Pet Supplies");
      Console.WriteLine("HybridDictionary elements...");
      foreach(DictionaryEntry d in dict){
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("Is the HybridDictionary having fixed size? = "+dict.IsFixedSize);
      Console.WriteLine("Is HybridDictionary read-only? = "+dict.IsReadOnly);
   }
}

आउटपुट

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

HybridDictionary elements...
A Bags
B Electronics
C Smart Wearables
D Pet Supplies
Is the HybridDictionary having fixed size? = False
Is HybridDictionary read-only? = False

उदाहरण

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

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

  1. सी # में ListDictionary से निर्दिष्ट कुंजी के साथ प्रविष्टि निकालें

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

  1. सी # में सॉर्टेडलिस्ट में निर्दिष्ट कुंजी से जुड़े मान प्राप्त करें या सेट करें

    SortedList में निर्दिष्ट कुंजी से संबद्ध मान प्राप्त करने या सेट करने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections; public class Demo {    public static void Main() {       SortedList list = new SortedList ();       list.Add("A

  1. C# में ListDictionary में निर्दिष्ट कुंजी से जुड़े मान प्राप्त करें या सेट करें

    ListDictionary में निर्दिष्ट कुंजी से संबद्ध मान प्राप्त करने या सेट करने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main() {       ListDictionary dict = new ListDi