I frequently find myself writing code like this:
List list = new List { 1, 3, 5 }; foreach (int i in list) { Console.Write(\"{0}\\t
Do this:
list.ForEach(i => Console.Write("{0}\t", i));
EDIT: To others that have responded - he wants them all on the same line, with tabs between them. :)