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

सी # में शब्दकोश में कुंजी/मूल्य जोड़े की संख्या प्राप्त करें

डिक्शनरी में की/वैल्यू पेयर की संख्या प्राप्त करने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      Dictionary<string, string> dict =
      new Dictionary<string, string>();
      dict.Add("One", "Chris");
      dict.Add("Two", "Steve");
      dict.Add("Three", "Messi");
      dict.Add("Four", "Ryan");
      dict.Add("Five", "Nathan");
      Console.WriteLine("Count of elements = "+dict.Count);
      Console.WriteLine("\nKey/value pairs...");
      foreach(KeyValuePair<string, string> res in dict){
         Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value);
      }
      if (dict.ContainsValue("Angelina"))
         Console.WriteLine("Value found!");
      else
         Console.WriteLine("Value isn't in the dictionary!");
      dict.Clear();
      Console.WriteLine("Cleared Key/value pairs...");
      foreach(KeyValuePair<string, string> res in dict){
         Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value);
      }
      Console.WriteLine("Count of elements now = "+dict.Count);
   }
}

आउटपुट

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

Count of elements = 5
Key/value pairs...
Key = One, Value = Chris
Key = Two, Value = Steve
Key = Three, Value = Messi
Key = Four, Value = Ryan
Key = Five, Value = Nathan
Value isn't in the dictionary!
Cleared Key/value pairs...
Count of elements now = 0

उदाहरण

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

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      Dictionary<string, string> dict = new Dictionary<string, string>();
      dict.Add("One", "David");
      dict.Add("Two", "Brian");
      dict.Add("Three", "Paul");
      dict.Add("Four", "Ryan");
      dict.Add("Five", "Nathan");
      Console.WriteLine("Count of elements = "+dict.Count);
   }
}

आउटपुट

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

Count of elements = 5

  1. पायथन में शब्दकोश में मूल्य से कुंजी प्राप्त करें

    पायथन डिक्शनरी में प्रमुख मूल्य जोड़े हैं। इस लेख में जब हम तत्व के मूल्य को जानते हैं तो हम कुंजी का मान प्राप्त करने का लक्ष्य रखते हैं। आदर्श रूप से कुंजी से निकाले गए मान लेकिन यहां हम इसके विपरीत कर रहे हैं। सूचकांक और मानों के साथ हम इसे प्राप्त करने के लिए शब्दकोश संग्रह के सूचकांक और मूल्य

  1. पायथन में एक शब्दकोश में एक कुंजी के मूल्य को कैसे अपडेट करें?

    पायथन डिक्शनरी ऑब्जेक्ट key:value जोड़े का एक अनियंत्रित संग्रह है। इना डिक्शनरी ऑब्जेक्ट डी, किसी भी कुंजी से जुड़ा मूल्य डी [के] द्वारा प्राप्त किया जा सकता है। >>> d={'one':1, 'two':2,'three':3,'four':4} >>> d['two'] 2 असाइनमेंट d[k]=v डि

  1. Redis HLEN - हैश मान में निहित फ़ील्ड की संख्या कैसे प्राप्त करें

    इस ट्यूटोरियल में, हम सीखेंगे कि कमांड का उपयोग करके, एक कुंजी पर संग्रहीत हैश मान में निहित फ़ील्ड की संख्या कैसे प्राप्त करें - HLEN रेडिस-क्ली में। रेडिस HLEN कमांड का सिंटैक्स इस प्रकार है :- वाक्यविन्यास :- redis host:post> HLEN <key name> आउटपुट :-  - (integer) value, representing