我希望能够将 c# 中的堆栈跟踪打印到 txt 文件,如下所述。注意以下内容:
- 我知道 Ex.Message 不会得到堆栈跟踪。我想使用 FileHandler 将 StackTrace 消息写入文本文件。
FileHandler 类内部代码并不重要。我想知道如何获取此处捕获的异常的堆栈跟踪。
try { //some code } // I just inherit from exception class (the message member, nothing big here) catch (CustomException ex) { //I want to write the stacktrace here instead of the ex.Message FileHandler.Write("DeveloperErrors.txt", "Stack Trace" + ex.Message, System.IO.FileMode.Append); }