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

Sao chép StringCollection tại chỉ số được chỉ định của mảng trong C #

Để sao chép StringCollection tại chỉ mục được chỉ định của mảng, mã như sau -

Ví dụ

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      StringCollection strCol = new StringCollection();
      String[] strArr = new String[] { "Tim", "Tom", "Sam", "Mark", "Katie", "Jacob"};
      Console.WriteLine("Elements...");
      for (int i = 0; i < strArr.Length; i++) {
         Console.WriteLine(strArr[i]);
      }
      strCol.AddRange(strArr);
      String[] arr = new String[strCol.Count];
      strCol.CopyTo(arr, 0);
      Console.WriteLine("Elements...after copying StringCollection to array");
      for (int i = 0; i < arr.Length; i++) {
         Console.WriteLine(arr[i]);
      }
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Elements...
Tim
Tom
Sam
Mark
Katie
Jacob
Elements...after copying StringCollection to array
Tim
Tom
Sam
Mark
Katie
Jacob

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ khác -

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      StringCollection strCol = new StringCollection();
      String[] strArr = new String[] { "Tim", "Tom", "Sam", "Mark", "Katie", "Jacob", "David"};
      Console.WriteLine("Elements...");
      for (int i = 0; i < strArr.Length; i++) {
         Console.WriteLine(strArr[i]);
      }
      strCol.AddRange(strArr);
      String[] arr = new String[10];
      strCol.CopyTo(arr, 3);
      Console.WriteLine("Elements...after copying");
      for (int i = 0; i < arr.Length; i++) {
         Console.WriteLine(arr[i]);
      }
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Elements...
Tim
Tom
Sam
Mark
Katie
Jacob
David
Elements...after copying

Tim
Tom
Sam
Mark
Katie
Jacob
David