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

सी # में संग्रह में निर्दिष्ट वस्तु की अनुक्रमणिका खोजना

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

उदाहरण

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");
      strCol.Add("Books");
      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);
      }
      Console.WriteLine("Index of specific object Electronics? = "+strCol.IndexOf("Electronics"));
   }
}

आउटपुट

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

StringCollection elements...
Accessories
Books
Electronics
Books
StringCollection elements...UPDATED
Accessories
Books
Headphone
Electronics
Books
Index of specific object Electronics? = 3

उदाहरण

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

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringCollection stringCol = new StringCollection();
      String[] arr = new String[] { "100", "200", "300", "400", "500" };
      Console.WriteLine("Array elements...");
      foreach (string res in arr) {
         Console.WriteLine(res);
      }
      stringCol.AddRange(arr);
      Console.WriteLine("Does the specified string is in the StringCollection? = "+stringCol.Contains("800"));
      Console.WriteLine("Total number of elements = "+stringCol.Count);
      Console.WriteLine("Iterating through StringCollection = "+stringCol.Count);
      StringEnumerator myenum = stringCol.GetEnumerator();
      while (myenum.MoveNext())
      Console.WriteLine(myenum.Current);
      Console.WriteLine("Index of specific object 500? = "+stringCol.IndexOf("500"));
      Console.WriteLine("Index of specific object 1000? = "+stringCol.IndexOf("1000"));
   }
}

आउटपुट

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

Array elements...
100
200
300
400
500
Does the specified string is in the StringCollection? = False
Total number of elements = 5
Iterating through StringCollection = 5
100
200
300
400
500
Index of specific object 500? = 4
Index of specific object 1000? = -1

  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(){       SortedSet<int> set1 = new SortedSet<int>(); &

  1. जांचें कि सॉर्टेडसेट ऑब्जेक्ट सी # में निर्दिष्ट संग्रह का उचित सबसेट है या नहीं

    यह जांचने के लिए कि क्या सॉर्टेडसेट ऑब्जेक्ट निर्दिष्ट संग्रह का एक उचित उपसमुच्चय है, कोड इस प्रकार है - उदाहरण using System; using System.Collections.Generic; public class Demo {    public static void Main(){       SortedSet set1 = new SortedSet();       set