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

SortedDictionary.C# में संपत्ति की गणना करें

C# में SortedDictionary.Count गुण का उपयोग SortedDictionary में निहित कुंजी/मान युग्मों की संख्या प्राप्त करने के लिए किया जाता है।

सिंटैक्स

वाक्य रचना इस प्रकार है -

public int Count { get; }

उदाहरण

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

using System;
using System.Collections;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      SortedDictionary<int, string> sortedDict = new SortedDictionary<int, string>();
      sortedDict.Add(100, "Mobile");
      sortedDict.Add(200, "Laptop");
      sortedDict.Add(300, "Desktop");
      sortedDict.Add(400, "Speakers");
      sortedDict.Add(500, "Headphone");
      sortedDict.Add(600, "Earphone");
      Console.WriteLine("SortedDictionary key-value pairs...");
      IDictionaryEnumerator demoEnum = sortedDict.GetEnumerator();
      while (demoEnum.MoveNext())
      Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
      Console.WriteLine("Count of SortedDictionary key-value pairs = "+sortedDict.Count);
      Console.WriteLine("\nThe SortedDictionary has the key 200? = "+sortedDict.ContainsKey(200));
      sortedDict.Clear();
      Console.WriteLine("Count of SortedDictionary key-value pairs = "+sortedDict.Count);
   }
}

आउटपुट

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

SortedDictionary key-value pairs...
Key = 100, Value = Mobile
Key = 200, Value = Laptop
Key = 300, Value = Desktop
Key = 400, Value = Speakers
Key = 500, Value = Headphone
Key = 600, Value = Earphone
Count of SortedDictionary key-value pairs = 6
The SortedDictionary has the key 200? = True
Count of SortedDictionary key-value pairs = 0

उदाहरण

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

using System;
using System.Collections;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      SortedDictionary<int, string> sortedDict = new SortedDictionary<int, string>();
      sortedDict.Add(100, "Inspiron");
      sortedDict.Add(200, "Alienware");
      sortedDict.Add(300, "Projectors");
      sortedDict.Add(400, "XPS");
      Console.WriteLine("SortedDictionary key-value pairs...");
      IDictionaryEnumerator demoEnum = sortedDict.GetEnumerator();
      while (demoEnum.MoveNext())
      Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
      Console.WriteLine("Count of SortedDictionary key-value pairs = "+sortedDict.Count);
      sortedDict.Add(800, "Notebook");
      sortedDict.Add(10000, "Bluetooth Speaker");
      Console.WriteLine("\nSortedDictionary key-value pairs...UPDATED");
      demoEnum = sortedDict.GetEnumerator();
      while (demoEnum.MoveNext())
      Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
      Console.WriteLine("Count of SortedDictionary key-value pairs (UPDATED) = "+sortedDict.Count);
      sortedDict.Clear();
      Console.WriteLine("\nCount of SortedDictionary key-value pairs (UPDATED) = "+sortedDict.Count);
   }
}

आउटपुट

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

SortedDictionary key-value pairs...
Key = 100, Value = Inspiron
Key = 200, Value = Alienware
Key = 300, Value = Projectors
Key = 400, Value = XPS
Count of SortedDictionary key-value pairs = 4
SortedDictionary key-value pairs...UPDATED
Key = 100, Value = Inspiron
Key = 200, Value = Alienware
Key = 300, Value = Projectors
Key = 400, Value = XPS
Key = 800, Value = Notebook
Key = 10000, Value = Bluetooth Speaker
Count of SortedDictionary key-value pairs (UPDATED) = 6
Count of SortedDictionary key-value pairs (UPDATED) = 0

  1. एचटीएमएल डोम कीबोर्डइवेंट स्थान संपत्ति

    HTML DOM कीबोर्डइवेंट लोकेशन प्रॉपर्टी कीबोर्ड पर दबाए गए कुंजी के स्थान के अनुरूप संख्या लौटाती है। सिंटैक्स निम्नलिखित वाक्य रचना है - दबाए गए कुंजी की वापसी का स्थान - event.location नंबर यहां, नंबर निम्नलिखित निम्नलिखित हो सकते हैं - number विवरण 0 यह कीबोर्ड पर लगभग सभी मानों का प्रत

  1. एचटीएमएल डोम कीबोर्डइवेंट कुंजी संपत्ति

    कीबोर्डइवेंट कुंजी गुण किसी ईवेंट का उपयोग करके दबाए गए कुंजी के अनुरूप कुंजी पहचानकर्ता देता है। सिंटैक्स निम्नलिखित वाक्य रचना है - नवीनतम टाइप किए गए वर्ण का पहचानकर्ता लौटाना - event.key उदाहरण आइए कीबोर्डइवेंट कुंजी संपत्ति के लिए एक उदाहरण देखें - <!DOCTYPE html> <html> <head

  1. Console.KeyAvailable () सी # में संपत्ति

    C# में Console.KeyAvailable() प्रॉपर्टी का उपयोग यह इंगित करने के लिए किया जाता है कि इनपुट स्ट्रीम में एक कुंजी प्रेस उपलब्ध है या नहीं। सिंटैक्स वाक्य रचना इस प्रकार है - public static bool KeyAvailable { get; } उदाहरण आइए अब C# - . में Console.KeyAvailable() प्रॉपर्टी को लागू करने के लिए एक उदा