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]);
      col.Insert(5, "Alienware");
      Console.WriteLine("Elements in Collection...UPDATED");
      foreach(string str in col){
         Console.WriteLine(str);
      }
   }
}

आउटपुट

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

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

उदाहरण

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

using System;
using System.Collections.ObjectModel;
public class Demo {
   public static void Main(){
      Collection<string> col = new Collection<string>();
      col.Add("Andy");
      col.Add("Kevin");
      col.Add("John");
      col.Add("Kevin");
      col.Add("Mary");
      col.Add("Katie");
      col.Add("Barry");
      col.Add("Nathan");
      Console.WriteLine("Elements in Collection...");
      foreach(string str in col){
         Console.WriteLine(str);
      }
      col.Insert(3, "Jacob");
      Console.WriteLine("Elements in Collection...UPDATED");
      foreach(string str in col){
         Console.WriteLine(str);
      }
   }
}

आउटपुट

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

Elements in Collection...
Andy
Kevin
John
Kevin
Mary
Katie
Barry
Nathan
Elements in Collection...UPDATED
Andy
Kevin
John
Jacob
Kevin
Mary
Katie
Barry
Nathan

  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. जांचें कि क्या हैशसेट और निर्दिष्ट संग्रह सी # में सामान्य तत्व साझा करते हैं

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

  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); आइए देखें पूरा