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

सी # में स्ट्रिंग डिक्शनरी में निर्दिष्ट कुंजी पर मान प्राप्त करता है या सेट करता है

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

उदाहरण

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringDictionary myDict = new StringDictionary();
      myDict.Add("1", "Tablet");
      myDict.Add("2", "Desktop");
      myDict.Add("3", "Speakers");
      myDict.Add("4", "Laptop");
      myDict.Add("5", "Notebook");
      myDict.Add("6", "Ultrabook");
      myDict.Add("7", "HDD");
      myDict.Add("8", "SDD");
      myDict.Add("9", "Headphone");
      myDict.Add("10", "Earphone");
      Console.WriteLine("Value for key 5 = "+myDict["5"]);
   }
}

आउटपुट

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

Value for key 5 = Notebook

उदाहरण

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

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringDictionary myDict = new StringDictionary();
      myDict.Add("1", "Tablet");
      myDict.Add("2", "Desktop");
      myDict.Add("3", "Speakers");
      myDict.Add("4", "Laptop");
      myDict.Add("5", "Notebook");
      myDict.Add("6", "Ultrabook");
      myDict.Add("7", "HDD");
      myDict.Add("8", "SDD");
      myDict.Add("9", "Headphone");
      myDict.Add("10", "Earphone");
      Console.WriteLine("Value for key 5 = "+myDict["5"]);
      myDict["5"] = "Flash Drive";
      Console.WriteLine("Value for key 5 [Updated] = "+myDict["5"]);
   }
}

आउटपुट

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

Value for key 5 = Notebook
Value for key 5 [Updated] = Flash Drive

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

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

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

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

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

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