|
-
October 8th, 2008, 01:33 PM
#1
Exceptions and Threads
If you start a thread, and somewhere in the thread an exception is thrown, but not caught in that thread, what happens?
Something like:
Code:
try
{
MyThread.Start();
}
catch
{
}
Does the exception propagate up to the thread or process that started it?
Or does your program crash with an unhandled exception error?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|