使用Visual Studio 2015禁用注释的自动缩进

时间:2017-05-10 17:49:10

标签: c# visual-studio comments resharper auto-indent

在安装了Resharper 9.0.0.0的Visual Studio 2015中保存C#文件时,我查看并搜索了禁用注释缩进的方法。

在开始编写实际代码之前,我想要伪代码。然而,我一直在调整Visual Studio和Resharper的设置无济于事。例如,我希望评论看起来像:

  private string ToggleString(string input)
    {
        // If input.length is between 1-100
            // All the uppercase letters converted to lowercase.
            // All the lowercase letters converted to uppercase
        // else
            // Return a constructive message.

        return input;
     }

当我保存 CTRL + s 时,结果如下:

private string ToggleString(string input)
{
    // If input.length is between 1-100
    // All the uppercase letters converted to lowercase.
    // All the lowercase letters converted to uppercase
    // else
    // Return a constructive message.

    return input;
 }

如何禁用自动格式?

2 个答案:

答案 0 :(得分:5)

在VS 2017(C ++)中,有一个复选框。

工具|选项|文字编辑器| C / C ++ |格式|压痕|保留评论缩进

取消选中它修复了烦人的评论自动格式化。 也许VS 2015中存在相同的选项。

答案 1 :(得分:0)

我认为不可能只省略内联注释格式并仍然可以进行其他代码清理。

您可以尝试转移到XML文档注释,然后尝试使用图片中的设置

enter image description here