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

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

C# में SortedDictionary.Remove() विधि का उपयोग SortedDictionary से निर्दिष्ट कुंजी वाले तत्व को निकालने के लिए किया जाता है।

आउटपुट

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

public bool Remove (TKey key);

ऊपर, पैरामीटर कुंजी निकालने के लिए तत्व की कुंजी है।

उदाहरण

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

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("\nKey 400 removed from SortedDictionary? = "+sortedDict.Remove(400));
      Console.WriteLine("\nSortedDictionary key-value pairs...UPDATED");
      demoEnum = sortedDict.GetEnumerator();
      while (demoEnum.MoveNext())
         Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
      SortedDictionary<int, string>.KeyCollection keyColl = sortedDict.Keys;
      Console.WriteLine("\nKeys...list");
      foreach( int i in keyColl ){
         Console.WriteLine(i);
      }
   }
}

आउटपुट

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

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
Key 400 removed from SortedDictionary? = True
SortedDictionary key-value pairs...UPDATED
Key = 100, Value = Mobile
Key = 200, Value = Laptop
Key = 300, Value = Desktop
Key = 500, Value = Headphone
Key = 600, Value = Earphone
Keys...list
100
200
300
500
600

उदाहरण

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

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(1, "Ultrabook");
      sortedDict.Add(2, "Alienware");
      sortedDict.Add(3, "Notebook");
      sortedDict.Add(4, "Connector");
      sortedDict.Add(5, "Flash Drive");
      sortedDict.Add(6, "SSD");
      sortedDict.Add(7, "HDD");
      sortedDict.Add(8, "Earphone");
      Console.WriteLine("SortedDictionary key-value pairs...");
      IDictionaryEnumerator demoEnum = sortedDict.GetEnumerator();
      while (demoEnum.MoveNext())
         Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
      Console.WriteLine("\nKey 7 removed from SortedDictionary? = "+sortedDict.Remove(7));
      Console.WriteLine("\nSortedDictionary key-value pairs...UPDATED");
      demoEnum = sortedDict.GetEnumerator();
      while (demoEnum.MoveNext())
         Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
      SortedDictionary<int, string>.KeyCollection keyColl = sortedDict.Keys;
      Console.WriteLine("\nKeys...list");
      foreach( int i in keyColl ){
         Console.WriteLine(i);
      }
   }
}

आउटपुट

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

SortedDictionary key-value pairs...
Key = 1, Value = Ultrabook
Key = 2, Value = Alienware
Key = 3, Value = Notebook
Key = 4, Value = Connector
Key = 5, Value = Flash Drive
Key = 6, Value = SSD
Key = 7, Value = HDD
Key = 8, Value = Earphone
Key 7 removed from SortedDictionary? = True
SortedDictionary key-value pairs...UPDATED
Key = 1, Value = Ultrabook
Key = 2, Value = Alienware
Key = 3, Value = Notebook
Key = 4, Value = Connector
Key = 5, Value = Flash Drive
Key = 6, Value = SSD
Key = 8, Value = Earphone
Keys...list
1
2
3
4
5
6
8

  1. HTML DOM सेलेक्ट रिमूव () मेथड

    HTML DOM सेलेक्ट रिमूव () विधि एक HTML दस्तावेज़ में ड्रॉप-डाउन सूची से एक नया विकल्प निकालती है। सिंटैक्स निम्नलिखित वाक्य रचना है - object.remove(index) यहां, इंडेक्स उस विकल्प के इंडेक्स का प्रतिनिधित्व करता है जिसे ड्रॉप-डाउन सूची से हटाया जाना है। उदाहरण आइए HTML DOM सेलेक्ट रिमूव () मेथड का

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

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

  1. कंकाल कुंजी कैसे निकालें

    यह सही समय है कि आप अपने कॉर्पोरेट नेटवर्क पर मजबूत सुरक्षा और निवारक उपायों को लागू करें। क्यों? ऐसा इसलिए है क्योंकि एक ज्ञात मैलवेयर है जो आज कॉर्पोरेट नेटवर्क पर हमला कर रहा है। इसे कंकाल कुंजी कहा जाता है। कंकाल कुंजी क्या है? कंकाल की एक खतरनाक ट्रोजन है जो कॉर्पोरेट नेटवर्क से संबंधित असुरक्