例如,在一个地方..。
//---------------a
try
{
// some network call
}
catch(WebException we)
{
throw new MyCustomException("some message ....", we);
}
在另一个地方。
//--------------b
try
{
// invoke code above
}
catch(MyCustomException we)
{
Debug.Writeline(we.stacktrace); // <----------------
}
我打印的堆栈跟踪只从 a 开始到 b, 它不包括来自 WebException 的内部堆栈跟踪。
How can I print all the stacktrace???