C#C
C#14mo ago
yourFriend

How to open brace on new line by default for C# or any language in vs code?

I want this by default:
if(condition)
{
    code here;
}


Instead of:
if(condition){
    code here;
}
Was this page helpful?