Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
using System; using System.Collections.Generic; class Program { static void Main() { var lst = new List<int> { 5, 8, 3, 1, 0, 7 }; foreach (int element in lst) { Console.WriteLine(element); } } } /* run: 5 8 3 1 0 7 */
using System; class Program { static void Main() { var arr = new int[] { 5, 7, 2, 1, 9 }; foreach (int n in arr) { Console.WriteLine(n); } } } /* run: 5 7 2 1 9 */