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

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

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

उदाहरण

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      ArrayList list = new ArrayList();
      list.Add("One");
      list.Add("Two");
      list.Add("Three");
      list.Add("Four");
      list.Add("Five");
      list.Add("Six");
      list.Add("Seven");
      list.Add("Eight");  
      Console.WriteLine("ArrayList elements...");
      foreach(string str in list) {
         Console.WriteLine(str);
      }
      Console.WriteLine("ArrayList is read-only? = "+list.IsReadOnly);
      Console.WriteLine("Does the element Six in the ArrayList? = "+list.Contains("Six"));
      list.Insert(4, "Twelve");
      Console.WriteLine("ArrayList elements...UPDATED");
      foreach(string str in list) {
         Console.WriteLine(str);
      }
   }
}

आउटपुट

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

ArrayList elements...
One
Two
Three
Four
Five
Six
Seven
Eight
ArrayList is read-only? = False
Does the element Six in the ArrayList? = True
ArrayList elements...UPDATED
One
Two
Three
Four
Twelve
Five
Six
Seven
Eight

उदाहरण

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

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      ArrayList arrList = new ArrayList();
      arrList.Add(100);
      arrList.Add(200);
      arrList.Add(300);
      arrList.Add(400);
      arrList.Add(500);
      Console.WriteLine("Display elements...");
      IEnumerator demoEnum = arrList.GetEnumerator();
      while (demoEnum.MoveNext()) {
         Object ob = demoEnum.Current;
         Console.WriteLine(ob);
      }
      arrList.Insert(4, 1000);
      Console.WriteLine("Display elements...UPDATED");
      demoEnum = arrList.GetEnumerator();
      while (demoEnum.MoveNext()) {
         Object ob = demoEnum.Current;
         Console.WriteLine(ob);
      }
   }
}

आउटपुट

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

Display elements...
100
200
300
400
500
Display elements...UPDATED
100
200
300
400
1000
500

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

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

  1. सूची में किसी तत्व की अनुक्रमणिका खोजने के लिए सी # प्रोग्राम

    एक सूची सेट करें और तत्व जोड़ें - List<int> val = new List<int>(); // integer elements val.Add(35); val.Add(55); val.Add(68); मान लें कि अब हमें तत्व 68 का सूचकांक खोजने की आवश्यकता है। उसके लिए, IndexOf () विधि का उपयोग करें - int index = val.IndexOf(68); यहाँ पूरा कोड है - उदाहरण us

  1. किसी अनुक्रमणिका का उपयोग करके किसी आइटम को C# सूची में कैसे सम्मिलित करें?

    सबसे पहले, एक सूची सेट करें - List<int> list = new List<int>(); list.Add(456); list.Add(321); list.Add(123); list.Add(877); list.Add(588); list.Add(459); अब, इंडेक्स 5 पर एक आइटम जोड़ने के लिए, मान लें; उसके लिए, सम्मिलित करें () विधि का उपयोग करें - list.Insert(5, 999); आइए देखें पूरा