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

การคัดลอกองค์ประกอบคอลเลกชันไปยังอาร์เรย์ใน C #


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

ตัวอย่าง

using System;
using System.Collections.ObjectModel;
public class Demo {
   public static void Main(){
      Collection<string> col = new Collection<string>();
      col.Add("One");
      col.Add("Two");
      col.Add("Three");
      col.Add("Four");
      col.Add("Five");
      col.Add("Six");
      col.Add("Seven");
      col.Add("Eight");
      Console.WriteLine("Collection....");
      foreach(string str in col){
         Console.WriteLine(str);
      }
      string[] strArr = new string[10];
      col.CopyTo(strArr, 2);
      Console.WriteLine("\nArray...");
      foreach(string str in strArr){
         Console.WriteLine(str);
      }
   }
}

ผลลัพธ์

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

Collection....
One
Two
Three
Four
Five
Six
Seven
Eight

Array...

One
Two
Three
Four
Five
Six
Seven
Eight

ตัวอย่าง

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

using System;
using System.Collections.ObjectModel;
public class Demo {
   public static void Main(){
      Collection<string> col = new Collection<string>();
      col.Add("One");
      col.Add("Two");
      col.Add("Three");
      col.Add("Four");
      col.Add("Five");
      Console.WriteLine("Collection....");
      foreach(string str in col){
         Console.WriteLine(str);
      }
      string[] strArr = new string[10];
      col.CopyTo(strArr, 3);
      Console.WriteLine("\nArray...");
      foreach(string str in strArr){
         Console.WriteLine(str);
      }
   }
}

ผลลัพธ์

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

Collection....
One
Two
Three
Four
Five

Array...

One
Two
Three
Four
Five