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

सी # में सॉर्टेड डिक्शनरी के माध्यम से पुनरावृत्त करने वाला एक गणक प्राप्त करें


SortedDictionary के माध्यम से पुनरावृति करने वाला गणक प्राप्त करने के लिए, कोड इस प्रकार है -

उदाहरण

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<int, int> sortedDict = new SortedDictionary<int, int>();
      sortedDict.Add(100, 1);
      sortedDict.Add(200, 2);
      sortedDict.Add(300, 3);
      sortedDict.Add(400, 4);
      sortedDict.Add(500, 5);
      sortedDict.Add(600, 6);
      sortedDict.Add(700, 7);
      sortedDict.Add(800, 8);
      sortedDict.Add(900, 9);
      sortedDict.Add(1000, 10);
      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 = 1
Key = 200, Value = 2
Key = 300, Value = 3
Key = 400, Value = 4
Key = 500, Value = 5
Key = 600, Value = 6
Key = 700, Value = 7
Key = 800, Value = 8
Key = 900, Value = 9
Key = 1000, Value = 10

  1. एक गणक प्राप्त करें जो सी # में शब्दकोश के माध्यम से पुनरावृत्त हो

    डिक्शनरी के माध्यम से पुनरावृति करने वाला एक एन्यूमरेटर प्राप्त करने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections; using System.Collections.Generic; public class Demo {    public static void Main(){       Dictionary<int, string> dict = new D

  1. सी # में स्ट्रिंग कोलेक्शन के माध्यम से पुनरावृत्त करने वाला एक गणक प्राप्त करें

    एक गणक प्राप्त करने के लिए जो StringCollection के माध्यम से पुनरावृति करता है, कोड इस प्रकार है - उदाहरण using System; using System.Collections.Specialized; public class Demo {    public static void Main(){       StringCollection stringCol = new StringCollection();   &n

  1. सी # में ड्राइव प्रारूप प्राप्त करें

    ड्राइव प्रारूप को C# में प्राप्त करने के लिए DriveFormat गुण का उपयोग करें। वह ड्राइव सेट करें जिसके लिए आप प्रारूप प्रदर्शित करना चाहते हैं - DriveInfo dInfo = new DriveInfo("C"); अब, ड्राइव फ़ॉर्मेट प्राप्त करने के लिए DriveFormat का उपयोग करें - dInfo.DriveFormat विंडोज़ सिस्टम के लि