Copy an array: Copy into middle of target : Array Copy « Data Structure « C# / CSharp Tutorial






using System;  
  
class MainClass {     
  public static void Main() {     
    int[] source = { 1, 2, 3, 4, 5 }; 
    int[] target = { 11, 12, 13, 14, 15 }; 
    int[] source2 = { -1, -2, -3, -4, -5 }; 
 
    Array.Copy(source2, 2, target, 3, 2); 
 
    Console.Write("target after copy:  "); 
    foreach(int i in target)  
      Console.Write(i + " "); 
    Console.WriteLine(); 
 
  } 
}
target after copy:  11 12 13 -3 -4








11.12.Array Copy
11.12.1.Copy an array
11.12.2.Copy an array: Copy into middle of target
11.12.3.Copying elements between arrays