Contact: aviboots(AT)netvision.net.il
40,875 questions
53,283 answers
573 users
using System; using System.Collections.Generic; class Program { static void Main() { var list = new List<int>() { 2, 4, 9, 7, 3, 6, 0, 8 }; list.Remove(6); Console.WriteLine(string.Join(" ", list)); } } /* run: 2 4 9 7 3 0 8 */