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

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

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

उदाहरण

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringCollection strCol = new StringCollection();
      String[] strArr = new String[] { "A", "B", "C", "D", "E", "F", "G", "H" };
      Console.WriteLine("StringCollection elements...");
      foreach (string str in strArr) {
         Console.WriteLine(str);
      }
      strCol.AddRange(strArr);
      Console.WriteLine("Element at 5th index = "+strCol[5]);
      Console.WriteLine("Count of strings in StringCollection = " + strCol.Count);
   }
}

आउटपुट

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

StringCollection elements...
A
B
C
D
E
F
G
H
Element at 5th index = F
Count of strings in StringCollection = 8

उदाहरण

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

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringCollection strCol = new StringCollection();
      String[] strArr = new String[] { "A", "B", "C", "D", "E", "F", "G", "H" };
      Console.WriteLine("StringCollection elements...");
      foreach (string str in strArr) {
         Console.WriteLine(str);
      }
      strCol.AddRange(strArr);
      Console.WriteLine("Element at 5th index = "+strCol[5]);
      strCol[5]= "K";
      Console.WriteLine("Element at 5th index [UPDATED] = "+strCol[5]);
   }
}

आउटपुट

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

StringCollection elements...
A
B
C
D
E
F
G
H
Element at 5th index = F
Element at 5th index [UPDATED] = K

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

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

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

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

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

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