Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

จะแทรกรายการลงในรายการ 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 สมมติว่า; สำหรับสิ่งนั้น ให้ใช้เมธอด Insert() −

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);
      }
   }
}