【发布时间】:2011-06-25 04:02:10
【问题描述】:
如果我有这样的代码:
try
{
Thread t = new Thread(new ThreadStart(wc.LocalRunProcess));
t.IsBackground = true;
t.Start();
}
catch (Exception ex)
{
//do something with ex
}
线程t抛出的异常会被catch块捕获吗?
【问题讨论】:
标签: c# multithreading exception