在Visual Studio 2015中隐藏XML注释

时间:2015-10-08 17:09:41

标签: c# .net visual-studio visual-studio-2015

用于在折叠时隐藏summary的XML注释(在方法之前等)。现在他们展示了它(即使在崩溃时)。

有没有办法防止这种情况?

这就是显示的内容:

enter image description here

以下内容展开时:

/// <summary>
/// How do I hide this text in this view?
/// </summary>
public int abc;

2 个答案:

答案 0 :(得分:7)

我也不喜欢这种改变,所以我写了一个扩展来恢复到VS 2013的行为。我刚刚在昨晚写了它,所以我认为这是一个测试版,但我会积极地使用它并积极修复任何出现的错误。随意查看:

https://github.com/refactorsaurusrex/squishy-vs

转过来......

enter image description here

......进入:

enter image description here

答案 1 :(得分:1)

在Visual Studio 2017中,执行以下操作:

/// <summary>
/// <para>Put your description here</para>
/// </summary>

只需在矩形中显示///<summary>