找不到Exception Helper [英] Cannot find Exception Helper

查看:81
本文介绍了找不到Exception Helper的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好

我已更新到VS 2017 15.8.3但除了工具/选项/调试/常规之外的任何地方都找不到Exception Helper。

帮助!

推荐答案

异常助手只是托管代码一直有的异常助手。它是较新的UI,可帮助诊断异常。它不是模态的,而是提供更多信息。在发生异常之前没有UI。
的示例代码触发它。

Exception Helper is just the Exception Assistant that managed code has always had. It is the newer UI to help diagnose exceptions when they occur. It is not modal and provides more information. There isn't a UI until an exception occurs. Example code to trigger it.

using System;

namespace ShowException
{
   public class Program
   {
      static void Main ( string[] args )
      {
          throw new Exception("Will show the exception UI");
      }
   }
}

请参阅此
blog
文章了解更多信息。

Refer to this blog article for more information.


这篇关于找不到Exception Helper的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆