I create a new thread and start it from a main thread.
m_MyThread = new Thread(HandleMyThread); m_MyThread.IsBackground = true; m_MyThread.Start(); private void
Just make a new thread like you did when you initially created the thread. You might also want to pull that out into a method to avoid repeating yourself.