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

सी # में हाइब्रिड डिक्शनरी में मान युक्त आईसीओलेक्शन प्राप्त करें

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

उदाहरण

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      HybridDictionary dict = new HybridDictionary();
      dict.Add("One", "Katie");
      dict.Add("Two", "Andy");
      dict.Add("Three", "Gary");
      dict.Add("Four", "Mark");
      dict.Add("Five", "Marie");
      dict.Add("Six", "Sam");
      dict.Add("Seven", "Harry");
      dict.Add("Eight", "Kevin");
      dict.Add("Nine", "Ryan");
      String[] strArr = new String[dict.Count];
      dict.Values.CopyTo(strArr, 0);
      for (int i = 0; i < dict.Count; i++)
         Console.WriteLine(strArr[i]);
   }
}

आउटपुट

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

Kevin
Harry
Mark
Gary
Katie
Marie
Sam
Andy
Ryan

उदाहरण

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

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {  
      HybridDictionary dict = new HybridDictionary();
      dict.Add("1", "A");
      dict.Add("2", "B");
      dict.Add("3", "C");
      dict.Add("4", "D");
      dict.Add("5", "E");
      dict.Add("6", "F");
      String[] strArr = new String[dict.Count];
      dict.Values.CopyTo(strArr, 0);
      for (int i = 0; i < dict.Count; i++)
         Console.WriteLine(strArr[i]);
   }
}

आउटपुट

यह निम्न आउटपुट *माइनस'

produce उत्पन्न करेगा
A
B
C
D
E
F

  1. सी # में स्ट्रिंग डिक्शनरी में मूल्यों का संग्रह प्राप्त करें

    StringDictionary में मानों का संग्रह प्राप्त करने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main(){       StringDictionary strDict1 = new StringDictionary();  

  1. सी # में ऑर्डर किए गए डिक्शनरी में मानों वाला आईसीओलेक्शन प्राप्त करें

    ऑर्डर्ड डिक्शनरी में मानों वाला एक आईसीओलेक्शन प्राप्त करने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main(){       OrderedDictionary dict = new OrderedDictionary(

  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 के बीच तत्वों की श्रेणी प्