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

SortedDictionary.Clear () विधि सी # में

C# में SortedDictionary.Clear() विधि का उपयोग SortedDictionary से सभी तत्वों को निकालने के लिए किया जाता है।

सिंटैक्स

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

public void Clear ();

उदाहरण

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

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 कैनवास clearRect () विधि

    HTML कैनवास में clearRect () विधि का उपयोग किसी दिए गए आयत में पिक्सेल को साफ़ करने के लिए किया जाता है। तत्व आपको जावास्क्रिप्ट का उपयोग करके वेब पेज पर ग्राफिक्स बनाने की अनुमति देता है। प्रत्येक कैनवास में दो तत्व होते हैं जो कैनवास की ऊंचाई और चौड़ाई का वर्णन करते हैं अर्थात क्रमशः ऊंचाई और चौड

  1. HTML डोम कंसोल.क्लियर () विधि

    HTML DOM कंसोल.क्लियर () विधि का उपयोग कंसोल को खाली करने के लिए किया जाता है। कंसोल.क्लियर () विधि कंसोल में कंसोल क्लियर किया गया संदेश भी लिखेगी और पिछली सभी कंसोल सामग्री को साफ करेगी। यह विधि पूरी तरह से सभी ब्राउज़रों द्वारा समर्थित है। सिंटैक्स कंसोल.क्लियर () विधि के लिए सिंटैक्स निम्नलिखित

  1. HTML DOM संग्रहण कुंजी () विधि

    HTML DOM स्टोरेज की () मेथड का इस्तेमाल स्टोरेज ऑब्जेक्ट में दिए गए इंडेक्स पर की नेम को वापस करने के लिए किया जाता है। सूचकांक को कुंजी () विधि के पैरामीटर के रूप में पारित किया जाता है। स्टोरेज ऑब्जेक्ट सेशन ऑब्जेक्ट या लोकलस्टोरेज ऑब्जेक्ट हो सकता है। सिंटैक्स − . के लिए वाक्य रचना निम्नलिखित है