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

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

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

उदाहरण

using System;
using System.Collections.ObjectModel;
public class Demo {
   public static void Main() {
      Collection<string> col = new Collection<string>();
      col.Add("Laptop");
      col.Add("Desktop");
      col.Add("Notebook");
      col.Add("Ultrabook");
      col.Add("Tablet");
      col.Add("Headphone");
      col.Add("Speaker");
      Console.WriteLine("Elements in Collection...");
      foreach(string str in col) {
         Console.WriteLine(str);
      }
      Console.WriteLine("Element at index 3 = " + col[3]);
      Console.WriteLine("Element at index 4 = " + col[4]);
   }
}

आउटपुट

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

Elements in Collection...
Laptop
Desktop
Notebook
Ultrabook
Tablet
Headphone
Speaker
Element at index 3 = Ultrabook
Element at index 4 = Tablet

उदाहरण

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

using System;
using System.Collections.ObjectModel;
public class Demo {
   public static void Main() {
      Collection<string> col = new Collection<string>();
      col.Add("Laptop");
      col.Add("Desktop");
      col.Add("Notebook");
      col.Add("Ultrabook");
      col.Add("Tablet");
      col.Add("Headphone");
      col.Add("Speaker");
      Console.WriteLine("Elements in Collection...");
      foreach(string str in col) {
         Console.WriteLine(str);
      }
      Console.WriteLine("Element at index 3 = " + col[3]);
      col[3] = "SSD";
      Console.WriteLine("Element at index 3 (Updated) = " + col[3]);
   }
}

आउटपुट

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

Elements in Collection...
Laptop
Desktop
Notebook
Ultrabook
Tablet
Headphone
Speaker
Element at index 3 = Ultrabook
Element at index 3 (Updated) = SSD

  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.ObjectModel; public class Demo {    public static void Main(){       Collection<int> col = new Collection<int>();       col.Add(10)

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

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