gpt4 book ai didi

c# - 如何查看 .NET 应用程序的堆栈跟踪

转载 作者:行者123 更新时间:2023-11-30 13:34:54 26 4
gpt4 key购买 nike

我有一个 .NET生产中的 Windows 应用程序无法访问 Visual Studio(标准版),他们唯一可以安装的是 Express版本,它没有即时调试选项(崩溃时有调试按钮的选项)。所以我只是想知道是否有 Windows 应用程序调试工具或其他我可以运行或附加以查看堆栈跟踪的东西。我还启用了 PDB在我的应用程序中,但它没有提供任何更多信息,因此我可以跟踪我的崩溃(由未处理的异常引起)。

最佳答案

如果您正在捕获异常,异常对象包含堆栈跟踪:Exception.StackTrace .此外,您可以使用 Environment.StackTrace 访问它.

在下面的代码中还有一个用于未处理异常的事件处理程序,它将异常(包括堆栈跟踪)写入事件日志。

// Sample for the Environment.StackTrace property
using System;

class Sample
{
public static void Main()
{
AppDomain.CurrentDomain.UnhandledException +=
new UnhandledExceptionEventHandler(UnhandledExceptions);

Console.WriteLine("StackTrace: '{0}'", Environment.StackTrace);
throw new Exception("Fatal Error");
}

static void UnhandledExceptions(object sender, UnhandledExceptionEventArgs e)
{
string source = "SOTest";
if (!System.Diagnostics.EventLog.SourceExists(source))
{
System.Diagnostics.EventLog.CreateEventSource(source, "Application");
}

System.Diagnostics.EventLog log = new System.Diagnostics.EventLog();
log.Source = source;

log.WriteEntry(e.ExceptionObject.ToString(),
System.Diagnostics.EventLogEntryType.Error);
}

关于c# - 如何查看 .NET 应用程序的堆栈跟踪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1640132/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com