/* * C# Program to Copy a Section of One Array to Another */ using System; class Program { static void Main() { int n, m, size; Console.WriteLine("Enter the size of the Array : "); n = Convert.ToInt32(Console.ReadLine()); int [] a = new int[n]; Console.WriteLine("Enter the Elements of the First Array :"); for (int i = 0; i