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

सी # में ArrayList की निर्दिष्ट अनुक्रमणिका पर तत्व निकालें

ArrayList के निर्दिष्ट सूचकांक में तत्व को हटाने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      ArrayList list1 = new ArrayList();
      list1.Add("A");
      list1.Add("B");
      list1.Add("C");
      list1.Add("D");
      list1.Add("E");
      list1.Add("F");
      list1.Add("G");
      list1.Add("H");
      list1.Add("I");
      Console.WriteLine("Elements in ArrayList1...");
      foreach (string res in list1) {
         Console.WriteLine(res);
      }
      ArrayList list2 = new ArrayList();
      list2.Add("A");
      list2.Add("B");
      list2.Add("C");
      list2.Add("D");
      list2.Add("E");
      list2.Add("F");
      list2.Add("G");
      list2.Add("H");
      list2.Add("I");
      Console.WriteLine("Elements in ArrayList2...");
      foreach (string res in list2)
      {
         Console.WriteLine(res);
      }
      Console.WriteLine("Count of elements in ArrayList2 = " + list2.Count);
      list2.RemoveAt(5);
      Console.WriteLine("Count of elements in ArrayList2 (Updated) = " + list2.Count);
   }
}

आउटपुट

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

Elements in ArrayList1...
A
B
C
D
E
F
G
H
I
Elements in ArrayList2...
A
B
C
D
E
F
G
H
I
Count of elements in ArrayList2 = 9
Count of elements in ArrayList2 (Updated) = 8

उदाहरण

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

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      ArrayList list1 = new ArrayList();
      list1.Add("Laptop");
      list1.Add("Dektop");
      list1.Add("Wearables");
      list1.Add("Tablet");
      list1.Add("Notebook");
      list1.Add("Ultrabooks");
      Console.WriteLine("Elements in ArrayList1...");
      foreach (string res in list1) {
         Console.WriteLine(res);
      }
      Console.WriteLine("Count of elements in ArrayList = " + list1.Count);
      list1.RemoveAt(2);
      Console.WriteLine("Count of elements in ArrayList (Updated) = " + list1.Count);
   }
}

आउटपुट

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

Elements in ArrayList1...
Laptop
Dektop
Wearables
Tablet
Notebook
Ultrabooks
Count of elements in ArrayList = 6
Count of elements in ArrayList (Updated) = 5

  1. सी # में ArrayList से तत्वों की एक श्रृंखला निकालें

    ArrayList से तत्वों की एक श्रृंखला को हटाने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections; public class Demo {    public static void Main(String[] args){       ArrayList list1 = new ArrayList();       list1.Add("A");  

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

    ArrayList से सभी तत्वों को हटाने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections; public class Demo {    public static void Main(String[] args){       ArrayList list1 = new ArrayList();       list1.Add("A");     &nb

  1. जांचें कि हैशसेट में सी # में निर्दिष्ट तत्व है या नहीं

    यह जांचने के लिए कि क्या हैशसेट में निर्दिष्ट तत्व है, कोड इस प्रकार है - उदाहरण using System; using System.Collections.Generic; public class Demo {    public static void Main(){       HashSet<int> set1 = new HashSet<int>();       set1.Add(25); &nb