Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何智能方法可以检测应用程序何时崩溃?我想使用这些信息向我们的服务器发送崩溃报告。
我发现的唯一一件事是检查:
LaunchActivatedEventArgs args.PreviousExecutionState == ApplicationExecutionState.Terminated
下次启动应用程序时,我可以确定应用程序崩溃只是因为它具有“终止”执行状态吗?我还能如何检查这个?
您可以使用AppDomain.UnhandledException或Application.UnhandledException事件。