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

सी # में स्ट्रिंगकोलेक्शन में निर्दिष्ट इंडेक्स पर डालें


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

उदाहरण

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      StringCollection strCol = new StringCollection();
      strCol.Add("Accessories");
      strCol.Add("Books");
      strCol.Add("Electronics");
      Console.WriteLine("StringCollection elements...");
      foreach (string res in strCol){
         Console.WriteLine(res);
      }
      strCol.Insert(2, "Headphone");
      Console.WriteLine("StringCollection elements...UPDATED");
      foreach (string res in strCol){
         Console.WriteLine(res);
      }
   }
}

आउटपुट

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

StringCollection elements... Accessories
Books
Electronics
StringCollection elements...UPDATED Accessories
Books
Headphone
Electronics

उदाहरण

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

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      StringCollection strCol = new StringCollection();
      strCol.Add("Laptop");
      strCol.Add("Desktop");
      strCol.Add("Tablet");
      strCol.Add("Speakers");
      Console.WriteLine("StringCollection elements...");
      foreach (string res in strCol){
         Console.WriteLine(res);
      }
      strCol.Insert(2, "Headphone");
      strCol.Insert(3, "Alienware");
      Console.WriteLine("StringCollection elements...UPDATED");
      foreach (string res in strCol){
         Console.WriteLine(res);
      }
      strCol.Insert(4, "E-Book Reader");
      strCol.Insert(5, "Monitor");
      strCol.Insert(6, "HDD");
      strCol.Insert(7, "SSD");
      Console.WriteLine("StringCollection elements...UPDATED");
      foreach (string res in strCol){
         Console.WriteLine(res);
      }
   }
}

आउटपुट

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

StringCollection elements...
Laptop
Desktop
Tablet
Speakers
StringCollection elements...UPDATED Laptop
Desktop
Headphone
Alienware
Tablet
Speakers
StringCollection elements...UPDATED Laptop
Desktop
Headphone
Alienware
E-Book Reader
Monitor
HDD
SSD
Tablet
Speakers

  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. सी # में स्ट्रिंगकोलेक्शन की निर्दिष्ट अनुक्रमणिका से निकालें

    StringCollection की निर्दिष्ट अनुक्रमणिका से निकालने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections.Specialized; public class Demo {    public static void Main() {       StringCollection stringCol = new StringCollection();       Strin

  1. सी # में सॉर्टेडलिस्ट की निर्दिष्ट अनुक्रमणिका से निकालें

    SortedList की निर्दिष्ट अनुक्रमणिका से निकालने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections; public class Demo {    public static void Main(String[] args) {       SortedList sortedList = new SortedList();       sortedList.Add("