缩小与Visual Studio 2015的评论

当我在安装了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;
 }

我如何禁用自动格式?


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

工具| 选项| 文本编辑器| C / C ++ | 格式化| 缩进| 保留注释的缩进

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


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

您可以尝试转移到XML Doc注释并尝试使用图片中的设置

在这里输入图像描述

链接地址: http://www.djcxy.com/p/39387.html

上一篇: indent of comments with Visual Studio 2015

下一篇: Background center with transform 3D and filter blur on Firefox