Kev*_*ica -3 c# exception try-catch
我有一些像这样的代码:
try
{
doStuff();
}
catch(SpecificException)
{
if(e.Message == interestingMessage)
doOtherStuff();
else
throw;
}
catch(Exception e)
{
doSomethingElse();
}
Run Code Online (Sandbox Code Playgroud)
当第一个catch块重新抛出异常时,它会被第二个catch块捕获吗?