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

सी # में संग्रह में निहित तत्वों की संख्या प्राप्त करें

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

उदाहरण

using System;
using System.Collections.ObjectModel;
public class Demo {
   public static void Main() {
      Collection<string> col = new Collection<string>();
      col.Add("Andy");
      col.Add("Kevin");
      col.Add("John");
      col.Add("Kevin");
      col.Add("Mary");
      col.Add("Katie");
      col.Add("Barry");
      col.Add("Nathan");
      col.Add("Mark");
      Console.WriteLine("Count of elements = "+ col.Count);
      Console.WriteLine("Iterating through the collection...");
      var enumerator = col.GetEnumerator();
      while (enumerator.MoveNext()) {
         Console.WriteLine(enumerator.Current);
      }
   }
}

आउटपुट

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

Count of elements = 9
Iterating through the collection...
Andy
Kevin
John
Kevin
Mary
Katie
Barry
Nathan
Mark

उदाहरण

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

using System;
using System.Collections.ObjectModel;
public class Demo {
   public static void Main() {
      Collection<int> col = new Collection<int>();
      col.Add(10);
      col.Add(20);
      col.Add(30);
      col.Add(40);
      col.Add(50);
      col.Add(60);
      col.Add(70);
      col.Add(80);
      Console.WriteLine("Elements in the Collection...");
      foreach(int val in col) {
         Console.WriteLine(val);
      }
      Console.WriteLine("Does the collection has the element 70? = "+col.Contains(70));
      Console.WriteLine("Count of elements = " + col.Count);
      col.Clear();
      Console.WriteLine("Count of elements (updated) = " + col.Count);
   }
}

आउटपुट

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

Elements in the Collection...
10
20
30
40
50
60
70
80
Does the collection has the element 70? = True
Count of elements = 8
Count of elements (updated) = 0

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

    संग्रह से सभी तत्वों को हटाने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections.ObjectModel; public class Demo {    public static void Main() {       Collection<int> col = new Collection<int>();       col.Add(10);   &nbs

  1. जांचें कि कोई तत्व सी # में संग्रह में है या नहीं

    यह जांचने के लिए कि कोई तत्व संग्रह में है या नहीं, कोड इस प्रकार है - उदाहरण using System; using System.Collections.ObjectModel; public class Demo {    public static void Main(){       Collection<int> col = new Collection<int>();       col.Add(10)

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