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
Probably a better way would be to pass a delegate into the thread instead of a reference to the form itself.