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

सी # में कंटेन्सकी

कंटेन्सकी सी # में एक डिक्शनरी विधि है और जांचें कि डिक्शनरी में कोई कुंजी मौजूद है या नहीं।

एक शब्दकोश घोषित करें और तत्व जोड़ें -

var dict = new Dictionary<string, int>() {
   {"TV", 1},
   {"Home Theatre", 2},
   {"Amazon Alexa", 3},
   {"Google Home", 5},
   {"Laptop", 5},
   {"Bluetooth Speaker", 6}
};

अब, मान लें कि आपको डिक्शनरी में किसी विशेष तत्व के अस्तित्व की जांच करने की आवश्यकता है। उसके लिए, ContainKey() विधि का उपयोग करें -

if (dict.ContainsKey("Laptop") == true) {
   Console.WriteLine(dict["Laptop"]);
}

निम्नलिखित कोड है -

उदाहरण

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      var dict = new Dictionary<string, int>() {
         {"TV", 1},
         {"Home Theatre", 2},
         {"Amazon Alexa", 3},
         {"Google Home", 5},
         {"Laptop", 5},
         {"Bluetooth Speaker", 6}
      };
      if (dict.ContainsKey("Laptop") == true) {
         Console.WriteLine(dict["Laptop"]);
      }
      if (dict.ContainsKey("Amazon Alexa") == true) {
         Console.WriteLine(dict["Amazon Alexa"]);
      }
   }
}

आउटपुट

5
3

  1. Dictionary.ContainsKey () सी # में विधि

    C# में Dictionary.ContainsKey () विधि यह जांचती है कि Dictionary

  1. कंटेन्सकी () विधि सी # में

    हैशटेबल संग्रह सेट करें और उसमें कुछ तत्व जोड़ें। Hashtable h = new Hashtable(); h.Add(1, "Sam"); h.Add(2, "Jack"); h.Add(3, "Andy"); h.Add(4, "Katie"); h.Add(5, "Beth"); h.Add(6, "Benjamin"); हैशटेबल में कुंजी मौजूद है या नहीं, यह जांचने

  1. सी # में कंटेन्सकी

    कंटेन्सकी सी # में एक डिक्शनरी विधि है और जांचें कि डिक्शनरी में कोई कुंजी मौजूद है या नहीं। एक शब्दकोश घोषित करें और तत्व जोड़ें - var dict = new Dictionary<string, int>() {    {"TV", 1},    {"Home Theatre", 2},    {"Amazon Alexa",