I frequently find myself writing code like this:
List list = new List { 1, 3, 5 }; foreach (int i in list) { Console.Write(\"{0}\\t
List a = new List() { 1, 2, 3, 4, 5 }; a.ForEach(p => Console.WriteLine(p));
edit: ahhh he beat me to it.