Để nối hai danh sách, hãy sử dụng phương thức AddRange ().
Đặt danh sách đầu tiên -
var products1 =new List(); products1.Add ("Thắt lưng"); products1.Add ("Áo phông"); products1.Add ("Quần dài");
Đặt danh sách thứ hai -
var products2 =new List(); products2.Add ("Giày dép"); products2.Add ("Điện tử");
Để nối cả hai danh sách -
products1.AddRange (products2);
Sau đây là mã hoàn chỉnh -
Ví dụ
using System.Collections.Generic; using System; namespace Demo {public static class Program {public static void Main () {var products1 =new List(); products1.Add ("Thắt lưng"); products1.Add ("Áo phông"); Products1.Add ("Quần"); Console.WriteLine ("Danh sach1 ...."); foreach (var p in products1) {Console.WriteLine (p); } var products2 =new Danh sách (); products2.Add ("Giày dép"); products2.Add ("Điện tử"); Console.WriteLine ("Danh sách của chúng tôi2 ...."); foreach (var p in products2) {Console.WriteLine (p); } products1.AddRange (products2); Console.WriteLine ("Danh sách ghép ...."); foreach (var p in products1) {Console.WriteLine (p); }}}}
Đầu ra
Danh sách của chúng tôi1 .... Thắt lưngTshirtT quầnDanh sách của chúng tôi2 .... Giày dépĐồ điện tửDanh sách riêng ....