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

จะผนวกรายการที่สองเข้ากับรายการที่มีอยู่ใน C # ได้อย่างไร


ใช้เมธอด AddRange() เพื่อผนวกรายการที่สองเข้ากับรายการที่มีอยู่

นี่คือรายการหนึ่ง -

List < string > list1 = new List < string > ();

list1.Add("One");
list1.Add("Two");

นี่คือรายการที่สอง -

List < string > list2 = new List < string > ();

list2.Add("Three");
ist2.Add("Four");

ตอนนี้ให้เราผนวก −

list1.AddRange(list2);

ให้เราดูรหัสที่สมบูรณ์

ตัวอย่าง

using System;
using System.Collections.Generic;
using System.Linq;

public class Demo {
   public static void Main() {

      List < string > list1 = new List < string > ();
      list1.Add("One");
      list1.Add("Two");
      Console.WriteLine("First list...");
      foreach(string value in list1) {
         Console.WriteLine(value);
      }

      Console.WriteLine("Second list...");
      List < string > list2 = new List < string > ();

      list2.Add("Three");
      list2.Add("Four");
      foreach(string value in list2) {
         Console.WriteLine(value);
      }

      Console.WriteLine("After Append...");
      list1.AddRange(list2);
      foreach(string value in list1) {
         Console.WriteLine(value);
      }
   }
}