我是 WinDbg 和 ADPlus 的新手,并且有一个非常基本的问题。ADPlus.doc 中的文档讨论了一个<AllExceptions>
部分。但我已经看到了使用<Exception Code="*">
.
这两者有什么区别?他们做同样的事情吗?我用哪一个有关系吗?
When using Exception Code you can specify different action for different exceptions. This is the most common usage in a debug situation.
The AllExceptions is handy if you want to have the same action for all types of exception. However the Log
is probably the only sensible action here.
I have never tried to mix both in the same config file !