考虑以下“安全”程序:
internal class Safe
{
public static void SafeMethodWillNeverThrow()
{
try
{
var something = ThrowsNewException();
Func<int, string> x = p => something.ToString();
}
catch (Exception)
{
}
}
private static object ThrowsNewException()
{
throw new Exception();
}
public static void Main()
{
SafeMethodWillNeverThrow();
}
}
它永远不应该以异常完成。但是为什么我运行它时它会失败?为什么 SafeMethodWillNeverThrow() 会抛出异常?
在测试此代码之前,请阅读下面的答案。