有没有办法使用 Resharper (6) 定义如何“清理”评论?我没有找到解决这个问题的方法。
代码清理前:
/// <summary>
/// This is a comment.
/// </summary>
public class MyClass
{
... <not yet cleaned code is here>
}
代码清理后:
/// <summary>
/// This is a comment.
/// </summary>
public class MyClass
{
... <cleaned code is here>
}
想要的结果:
/// <summary>
/// This is a comment.
/// </summary>
public class MyClass
{
... <cleaned code is here>
}
备注:我不想禁用单个类的清理等。我只想更改意外添加的评论中的缩进。