Contact: aviboots(AT)netvision.net.il
40,026 questions
51,982 answers
573 users
using System; namespace ConsoleApplication_C_Sharp { class Program { static void Main(string[] args) { string[] arr = { "a", "b", "c", "d", "e" }; foreach (string ch in arr) Console.WriteLine(ch); } } } /* run: a b c d e */