请考虑这个简短的控制台应用代码。
static void Main(string[] args)
{
try
{
Action a = () =>
{
throw new ApplicationException("Oops");
};
var ar = a.BeginInvoke(null, null);
ar.AsyncWaitHandle.WaitOne();
try
{
a.EndInvoke(ar);
Console.WriteLine("No message");
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
finally
{
Console.ReadKey();
}
}
运行时,Visual Studio会在throw
上断言抱怨其未处理。在调试器外部执行时,代码执行我期望的操作(显示“Oops”)。
如何说服Visual Studio允许代码像在现实世界中那样执行?