Listing 11: Running a Thread in the Background public class Printer { public void PrintPowersOfTwo() { ... } } public static void Main(string [] args) { ... Printer printer1 = new Printer(); Thread p1Thread = new Thread(new ThreadStart(printer1.PrintPowersOfTwo)); p1Thread.IsBackground = true; p1Thread.Start(); ... }