我想知道是否有一些方法可以添加样式,如:粗体,斜体,下划线等等到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}*.");
什么会给我们这种风格:
“我的异常消息包含该重要关键字:重要内容以及其他重要关键字:其他重要内容。”
我认为它可能会提高很多可读性。
我也很好奇是否可以在其他IDE中使用插件?
您怎么看?