Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have code like this:

try
{
    Thread t = new Thread(new ThreadStart(wc.LocalRunProcess));
    t.IsBackground = true;
    t.Start();
}
catch (Exception ex)
{
    //do something with ex
}

Will the exception thrown by thread t be caught in the catch block?

share|improve this question

2 Answers

up vote 17 down vote accepted

No. It will not catch any exceptions in your other thread t. You will have to catch them in that thread and deal with them appropriately.

However, I believe the AppDomain's UnhandedException event will report it.

share|improve this answer
Ok, thank you... – xbonez Feb 10 '11 at 21:16
6  
Application.ThreadException for WinForms, Application.DispatcherUnhandledException for WPF and AppDomain.UnhandledException to be specific. – Amy West Feb 10 '11 at 21:28
@xbonez, Also to expand, the code in the question will start the new thread then continue processing right past the catch block while the new thread just starts executing. – John McDonald Feb 10 '11 at 21:35
@John: Aah, true. Didnt think of that before. – xbonez Feb 11 '11 at 1:08

Take a look at System.ComponentModel.BackgroundWorker! It has exception and cancellation handling.

share|improve this answer
Sorry, forgot to answer the question. No the catch will not get exceptions from another thread. The BackgroundWorker was designed to cope with this situation. – Richard Schneider Feb 10 '11 at 22:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.