When I write code, Visual Studio itself after} corrects all the brackets with a break to another line.
if (1) { code(); }
VS fixes the code (C #) on:
if (1) { code(); }
Yes, this is important, the place is not saved.
When I write code, Visual Studio itself after} corrects all the brackets with a break to another line.
if (1) { code(); }
VS fixes the code (C #) on:
if (1) { code(); }
Yes, this is important, the place is not saved.
Source: https://ru.stackoverflow.com/questions/957512/
All Articles
Tools
=>Options
=>Text Editor
=>C#
=>Code Style
=>Formating
=>New Lines
- dmeptyif (1) code();
Generally one line - Egor Trutnev