Disable/Customize comment (re-)formatting in Resharper when using code cleanup
问题 Is there a way to define how the comments are "cleaned" using Resharper (6)? I didn't find a solution to this problem. Before code cleanup: /// <summary> /// This is a comment. /// </summary> public class MyClass { ... <not yet cleaned code is here> } After code cleanup: /// <summary> /// This is a comment. /// </summary> public class MyClass { ... <cleaned code is here> } Wanted result: /// <summary> /// This is a comment. /// </summary> public class MyClass { ... <cleaned code is here> }