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

จะแทรกองค์ประกอบของคอลเลกชันลงในรายการที่ดัชนีที่ระบุใน C # ได้อย่างไร?


ในการแทรกองค์ประกอบของคอลเลกชันลงในรายการที่ดัชนีที่ระบุ รหัสจะเป็นดังนี้ -

ตัวอย่าง

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args){
      string[] strArr = { "John", "Tom", "Kevin", "Mark", "Gary" };
      List<string> list = new List<string>(strArr);
      Console.WriteLine("Elements in a List...");
      foreach(string str in list){
         Console.WriteLine(str);
      }
      strArr = new string[] { "Demo", "Text" };
      Console.WriteLine("Inserted new elements in a range...");
      list.InsertRange(3, strArr);
      foreach(string res in list){
         Console.WriteLine(res);
      }
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Elements in a List...
John
Tom
Kevin
Mark
Gary
Inserted new elements in a range... John
Tom
Kevin
Demo
Text
Mark
Gary

ตัวอย่าง

เรามาดูตัวอย่างอื่นกัน −

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args){
      int[] intArr = { 10, 20, 30, 40, 50 };
      List<int> list = new List<int>(intArr);
      Console.WriteLine("Elements in a List...");
      foreach(int i in list){
         Console.WriteLine(i);
      }
      intArr = new int[] { 300, 400, 500};
      Console.WriteLine("Inserted new elements in a range...");
      list.InsertRange(2, intArr);
      foreach(int res in list){
         Console.WriteLine(res);
      }
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Elements in a List...
10
20
30
40
50
Inserted new elements in a range...
10
20
300
400
500
30
40
50