Visual Studio2015异常助手去哪了?
Where did the exception assistant go for Visual Studio 2015?
对于 Visual Studio 2013 年处理的异常,我可以通过单击红色异常助手图标在 catch 块中查看异常对话框。在 Visual Studio 2015 年,这个缺失了。抛出异常时对话框仍然显示,所以这不是问题。尽管 this answer 中有解决方法,但它不提供异常对话框的功能(例如复制到剪贴板)。
显然它已经不存在了,所以你必须观察 $exception
,它总是有当前的异常对象。
根据 this,我会尝试 enabling/disabling Tools | Options > Debugging | General | Use the new Exception Helper
,或尝试此消息中提到的更新,发布于 2017 年 12 月 5 日:
This issue has been fixed and is now available in our latest update. You can download the update via the in-product notification or from here: https://www.visualstudio.com/vs/
对于 Visual Studio 2013 年处理的异常,我可以通过单击红色异常助手图标在 catch 块中查看异常对话框。在 Visual Studio 2015 年,这个缺失了。抛出异常时对话框仍然显示,所以这不是问题。尽管 this answer 中有解决方法,但它不提供异常对话框的功能(例如复制到剪贴板)。
显然它已经不存在了,所以你必须观察 $exception
,它总是有当前的异常对象。
根据 this,我会尝试 enabling/disabling Tools | Options > Debugging | General | Use the new Exception Helper
,或尝试此消息中提到的更新,发布于 2017 年 12 月 5 日:
This issue has been fixed and is now available in our latest update. You can download the update via the in-product notification or from here: https://www.visualstudio.com/vs/