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

จะแทรกรายการในรายการในตำแหน่งที่กำหนดใน C # ได้อย่างไร?


หากต้องการแทรกรายการในรายการที่สร้างไว้แล้ว ให้ใช้เมธอด Insert()

ประการแรก ตั้งค่าองค์ประกอบ −

List <int> list = new List<int>();
list.Add(989);
list.Add(345);
list.Add(654);
list.Add(876);
list.Add(234);
list.Add(909);

ตอนนี้ สมมติว่าคุณต้องแทรกรายการที่ตำแหน่งที่ 4 สำหรับสิ่งนั้น ใช้เมธอด Insert() −

// inserting element at 4th position
list.Insert(3, 567);

ให้เราดูตัวอย่างที่สมบูรณ์ −

ตัวอย่าง

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(989);
         list.Add(345);
         list.Add(654);
         list.Add(876);
         list.Add(234);
         list.Add(909);

         Console.WriteLine("Count: {0}", list.Count);

         Console.Write("List: ");
         foreach(int i in list) {
            Console.Write(i + " ");
         }
         // inserting element at 4th position
         list.Insert(3, 567);
         Console.Write("\nList after inserting a new element: ");
         foreach(int i in list) {
            Console.Write(i + " ");
         }
         Console.WriteLine("\nCount: {0}", list.Count);
      }
   }
}