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

सी # सॉर्टेड डिक्शनरी। जोड़ें () विधि:


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

सिंटैक्स

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

public void Add (TKey key, TValue val);

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

उदाहरण

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

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);
   }
}

आउटपुट

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

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

उदाहरण

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

using System;
using System.Collections;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      SortedDictionary<string, string> sortedDict = new SortedDictionary<string, string>();
      sortedDict.Add("A", "John");
      sortedDict.Add("B", "Andy");
      sortedDict.Add("C", "Tim");
      sortedDict.Add("D", "Ryan");
      sortedDict.Add("E", "Kevin");
      sortedDict.Add("F", "Katie");
      sortedDict.Add("G", "Brad");
      Console.WriteLine("SortedDictionary key-value pairs...");
      IDictionaryEnumerator demoEnum = sortedDict.GetEnumerator();
      while (demoEnum.MoveNext())
      Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
      Console.WriteLine("\nThe SortedDictionary has the key F? = "+sortedDict.ContainsKey("F"));
   }
}

आउटपुट

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

SortedDictionary key-value pairs...
Key = A, Value = John
Key = B, Value = Andy
Key = C, Value = Tim
Key = D, Value = Ryan
Key = E, Value = Kevin
Key = F, Value = Katie
Key = G, Value = Brad
The SortedDictionary has the key F? = True

  1. क्रिप्टो.जनरेटकीपेयरसिंक () Node.js में विधि

    क्रिप्टो.जनरेटकीपेयरसिंक() का उपयोग सिंक प्रवाह में निर्दिष्ट प्रकार की एक नई असममित कुंजी जोड़ी उत्पन्न करने के लिए किया जा सकता है। कुंजी जोड़ी बनाने के लिए समर्थित प्रकार हैं:RSA, DSA, EC, Ed25519, Ed448, X25519, X448 और DH। फ़ंक्शन ऐसा व्यवहार करता है जैसे कि keyObject.export को उसके परिणाम पर क

  1. क्रिप्टो.जनरेटकीपेयर () Node.js में विधि

    Crypto.generateKeyPair() का उपयोग निर्दिष्ट प्रकार की एक नई असममित कुंजी जोड़ी उत्पन्न करने के लिए किया जा सकता है। कुंजी जोड़ी बनाने के लिए समर्थित प्रकार हैं:RSA, DSA, EC, Ed25519, Ed448, X25519, X448 और DH। फ़ंक्शन ऐसा व्यवहार करता है जैसे कि keyObject.export को उसके परिणाम पर कॉल किया गया है जब

  1. एचटीएमएल डोम डालने से पहले () विधि

    HTML DOM insertBefore () विधि पहले से मौजूद चाइल्ड नोड से पहले एक नया नोड सम्मिलित करती है। सिंटैक्स निम्नलिखित वाक्य रचना है - कॉलिंग इंसर्ट बिफोर () पोजीशनस्ट्रिंग और टेक्स्ट के मापदंडों के साथ node.insertBefore(newNode, existingNode) यहां, पैरामीटर निम्नलिखित हो सकते हैं - पैरामीटर पैरामीटर वि