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

C# में ListDictionary में कुंजियों वाला एक ICollection प्राप्त करें

ListDictionary में कुंजियों वाला एक ICollection प्राप्त करने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      ListDictionary listDict = new ListDictionary();
      listDict.Add("1", "Laptop");
      listDict.Add("2", "Tablet");
      listDict.Add("3", "Desktop");
      listDict.Add("4", "Speaker");
      listDict.Add("5", "Earphone");
      listDict.Add("6", "Headphone");
      ICollection col = listDict.Keys;
      foreach(String s in col){
         Console.WriteLine(s);
      }
   }
}

आउटपुट

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

1
2
3
4
5
6

उदाहरण

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

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      ListDictionary listDict = new ListDictionary();
      listDict.Add("A", "Tom");
      listDict.Add("B", "John");
      listDict.Add("C", "Kevin");
      listDict.Add("D", "Tim");
      ICollection col = listDict.Keys;
      foreach(String s in col){
         Console.WriteLine(s);
      }
   }
}

आउटपुट

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

A
B
C
D

  1. सी # में सॉर्टेडलिस्ट क्लास की कुंजी संपत्ति क्या है?

    C# में SortedList वर्ग की कुंजी संपत्ति का उपयोग करके SortedList में कुंजियाँ प्राप्त करें। हमने पहले SortedList प्रॉपर्टी को तत्वों के साथ सेट किया है। SortedList sl = new SortedList(); sl.Add("ST0", "One"); sl.Add("ST1", "Two"); sl.Add("ST2", "

  1. सी # सूची में तत्वों की श्रेणी प्राप्त करें

    तत्वों की श्रेणी प्राप्त करने के लिए GetRange() विधि का उपयोग करें - सबसे पहले, एक सूची सेट करें और तत्वों को जोड़ें - List<int> arr1 = new List<int>(); arr1.Add(10); arr1.Add(20); arr1.Add(30); arr1.Add(40); arr1.Add(50); अब, एक नई सूची के तहत इंडेक्स 1 और 3 के बीच तत्वों की श्रेणी प्

  1. सी # प्रोग्राम एक शब्दकोश से चाबियों की सूची प्राप्त करने के लिए

    शब्दकोश तत्वों को सेट करें - Dictionary<int, string> d = new Dictionary<int, string>(); // dictionary elements d.Add(1, "One"); d.Add(2, "Two"); d.Add(3, "Three"); d.Add(4, "Four"); d.Add(5, "Five"); d.Add(6, "Six"); d.Add(7, &