Resharper compile time autoformat incorrectly changes code
问题 Resharper changes below code string strTest = "Test"; string strTest2 = "Test2"; to this string strTest = "Test";string strTest2 = "Test2"; if cursor is at the end of the first line when I start project. It makes all breakpoints obsolete ("The breakpoint will not currently be hit. The source code is different from the original version.") And sometimes it mixes comment line with code line and completely breaks execution. For instance: //Comment line string strTest = "Test"; changes to /