using System; public class Exercise14 { public static void Main() { int i,pos,n; int[] arr1 = new int[50]; Console.Write("\n\nDelete an element at desired position from an array :\n"); Console.Write("---------------------------------------------------------\n"); Console.Write("Input the size of array : "); n = Convert.ToInt32(Console.ReadLine()); /* Stored values into the array*/ Console.Write("Input {0} elements in the array in ascending order:\n",n); for(i=0; i