Contact: aviboots(AT)netvision.net.il
38,933 questions
50,642 answers
573 users
using System; using System.Collections.Generic; public class Program { public static void Main() { List<int> lst = new List<int>(new int[] { 12, 87, 34, 99, 100 }); lst.ForEach(n => Console.WriteLine(n)); } } /* run: 12 87 34 99 100 */