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

सी # में सॉर्टेडसेट में तत्वों की संख्या प्राप्त करें

SortedSet में तत्वों की संख्या प्राप्त करने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      SortedSet<string> set1 = new SortedSet<string>();
      set1.Add("AB");
      set1.Add("BC");
      set1.Add("CD");
      set1.Add("EF");
      Console.WriteLine("Elements in SortedSet1...");
      foreach (string res in set1){
         Console.WriteLine(res);
      }
      Console.WriteLine("Count of elements in SorteSet1 = "+set1.Count);
      SortedSet<string> set2 = new SortedSet<string>();
      set2.Add("BC");
      set2.Add("CD");
      set2.Add("DE");
      set2.Add("EF");
      set2.Add("AB");
      set2.Add("HI");
      set2.Add("JK");
      Console.WriteLine("Elements in SortedSet2 (Enumerator for SortedSet)...");
      SortedSet<string>.Enumerator demoEnum = set2.GetEnumerator();
      while (demoEnum.MoveNext()) {
         string res = demoEnum.Current;
         Console.WriteLine(res);
      }
      Console.WriteLine("Count of elements in SorteSet2 = "+set2.Count);
   }
}

आउटपुट

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

Elements in SortedSet1...
AB
BC
CD
EF
Count of elements in SorteSet1 = 4 Elements in SortedSet2 (Enumerator for SortedSet)...
AB
BC
CD
DE
EF
HI
JK
Count of elements in SorteSet2 = 7

उदाहरण

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

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      SortedSet<int> set1 = new SortedSet<int>();
      set1.Add(100);
      set1.Add(200);
      set1.Add(300);
      set1.Add(400);
      Console.WriteLine("Elements in SortedSet...");
      foreach (int res in set1){
         Console.WriteLine(res);
      }
      Console.WriteLine("Count of elements in SortedSet = " + set1.Count);
      set1.Clear();
      Console.WriteLine("Count of elements in SortedSet (updated) = " + set1.Count);
   }
}

आउटपुट

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

Elements in SortedSet...
100
200
300
400
Count of elements in SortedSet = 4 Count of elements in SortedSet (updated) = 0

  1. सी # में सॉर्टेडसेट से सभी तत्वों को हटा दें

    SortedSet से सभी तत्वों को हटाने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections.Generic; public class Demo {    public static void Main(){       SortedSet<string> set1 = new SortedSet<string>();       set1.Add("AB&quo

  1. सी # में फ़ाइल में बाइट्स की संख्या प्राप्त करें

    FileInfo प्रकार में एक लंबाई संपत्ति होती है जो यह निर्धारित करती है कि फ़ाइल में कितने बाइट हैं। सबसे पहले, फ़ाइल सेट करें - FileInfo file = new FileInfo("D:\\new"); अब लेंथ प्रॉपर्टी का इस्तेमाल करें - file.Length ये रहा पूरा कोड - उदाहरण using System; using System.Linq; using System.

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