using System;
namespace foreachloop
{
public class foreachloop
public static void Main(string []args)
Char[] myarray={'H','e','l','l','o'};
foreach (Char ch in myarray)
Console.WriteLine(ch);
}