Is there a way to determine how comments are “cleared” with Resharper (6)? I did not find a solution to this problem.
Before clearing the code:
public class MyClass
{
... <not yet cleaned code is here>
}
After clearing the code:
public class MyClass
{
... <cleaned code is here>
}
Required Result:
public class MyClass
{
... <cleaned code is here>
}
Notes: I do not want to disable cleanup for one class, etc. I just want to change the indentation in the comment, which is added randomly.
source
share