Break lines and wrapping in auto formatting of Visual Studio with ReSharper
问题 I'm working in a C# project and using Visual Studio 2012. When Visual Studio tries to format my code, it breaks lines and make my code look difficult to read. The original code (what looks pretty nice to read for me and my team): if (list.Any(x => x.Type == (int) EnumType.Customer)) { } And when Visual Studio tries to format: if ( list.Any( x => x.Type == (int) EnumType.Customer)) { // Other break codes } There are a lot of other parts where it is breaking my code. I like auto formatting for