我在我的项目中使用 SMF 播放器进行在线视频流。随机应用程序崩溃。(有时应用程序运行 60 小时,有时 apln 在 2 小时内崩溃)我已将未处理的异常处理程序添加到主类。
public partial class App : Application
{
public App()
{
this.Startup += this.Application_Startup;
this.Exit += this.Application_Exit;
this.UnhandledException += this.Application_UnhandledException;
InitializeComponent();
}
但是在异常期间,我只得到以下信息,没有堆栈跟踪信息。
System.Exception 类型的 UnhandledException,错误 HRESULT E_FAIL 已从对 COM 组件的调用中返回。
请帮助解决此问题。