I have a method running in a seperate thread. The thread is created and started from a form in a windows application. If an exception is thrown from inside the thread, wha
Use the BackgroundWorker class in the .NET framework instead. It is the best practice for performing UI work on a different thread.