सबसे पहले, एक सूची सेट करें -
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);
आइए देखें पूरा उदाहरण -
उदाहरण
using System; using System.Collections.Generic; namespace Demo { public class Program { public static void Main(string[] args) { List<int> list = new List<int>(); list.Add(456); list.Add(321); list.Add(123); list.Add(877); list.Add(588); list.Add(459); Console.Write("List: "); foreach (int i in list) { Console.Write(i + " "); } Console.WriteLine("\nCount: {0}", list.Count); // inserting element at index 5 list.Insert(5, 999); Console.Write("\nList after inserting a new element: "); foreach (int i in list) { Console.Write(i + " "); } Console.WriteLine("\nCount: {0}", list.Count); } } }