当我运行我的程序时,我在这一行得到一个错误:global::System.Diagnostics.Debugger.Break();
#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
UnhandledException += (sender, e) =>
{
if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Brea();
};
#endif
它还显示错误消息“调试器会话中断,因为用户暂停了会话”。
有人知道如何解决这个问题吗?