是否可以在Visual Studio中为异常消息提供样式?

时间:2017-01-31 11:11:32

标签: c# visual-studio exception ide

我想知道是否有一些方法可以添加样式,如:粗体斜体,下划线等等到Visual Studio中的异常弹出窗口。

例如:

string keyword = "important stuff";
string anotherKeyword = "other important stuff";

throw new Exception($"My exception message with that important keyword: **{keyword}** and that other important keyword: *{anotherKeyword}*.");

什么会给我们这种风格:

“我的异常消息包含该重要关键字:重要内容以及其他重要关键字:其他重要内容。”

Exception message pop-up in Visual Studio

我认为它可能会提高很多可读性。

我也很好奇是否可以在其他IDE中使用插件?

您怎么看?

0 个答案:

没有答案