Computer >> Máy Tính >  >> Lập trình >> C#

Làm thế nào để sao chép hoặc sao chép một danh sách C #?

Để sao chép hoặc nhân bản một danh sách C #, trước tiên hãy đặt một danh sách -

List < string > list1 = new List < string > ();
list1.Add("One");
list1.Add("Two");
list1.Add("Three");
list1.Add("Four");

Bây giờ hãy khai báo một mảng chuỗi và sử dụng phương thức CopyTo () để sao chép.

string[] arr = new string[20];
list1.CopyTo(arr);

Hãy cho chúng tôi xem mã hoàn chỉnh để sao chép danh sách vào mảng một chiều.

Ví dụ

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");
      list1.Add("Three");
      list1.Add("Four");

      Console.WriteLine("First list...");
      foreach(string value in list1) {
         Console.WriteLine(value);
      }

      string[] arr = new string[20];
      list1.CopyTo(arr);

      Console.WriteLine("After copy...");

      foreach(string value in arr) {
         Console.WriteLine(value);
      }
   }
}