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

C# में ListDictionary में निर्दिष्ट कुंजी और मान जोड़ें


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

उदाहरण

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      ListDictionary dict = new ListDictionary();
      dict.Add("1", "One");
      dict.Add("2", "Two");
      dict.Add("3", "Three");
      dict.Add("4", "Four");
      dict.Add("5", "Five");
      Console.WriteLine("ListDictionary key-value pairs...");
      IDictionaryEnumerator demoEnum = dict.GetEnumerator();
      while (demoEnum.MoveNext())
         Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
   }
}

आउटपुट

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

ListDictionary key-value pairs...
Key = 1, Value = One
Key = 2, Value = Two
Key = 3, Value = Three
Key = 4, Value = Four
Key = 5, Value = Five

उदाहरण

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

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      ListDictionary listDict = new ListDictionary();
      listDict.Add("1", 100);
      listDict.Add("2", 200);
      listDict.Add("3", 300);
      listDict.Add("4", 400);
      listDict.Add("5", 500);
      listDict.Add("6", 600);
      listDict.Add("7", 700);
      listDict.Add("8", 800);
      listDict.Add("9", 900);
      listDict.Add("10", 1000);
      ICollection col = listDict.Keys;
      Console.WriteLine("Display all the keys...");
      foreach(String s in col){
         Console.WriteLine(s);
      }
   }
}

आउटपुट

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

Display all the keys...
1
2
3
4
5
6
7
8
9
10

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

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

  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