using System;
public class Program
{
public static void Main()
int[] a = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
for (int i = 1; i <= 10; i++)
Console.WriteLine("i Value using for loop :"+i);
}
Console.WriteLine("-----------------");
foreach (var item in a)
Console.WriteLine("i Value using foreach loop :"+item);