Recently the closing curly brace start to align on the fully left instead of under the opening brace, but only when the braces are empties :
(I'm in Visual Studio 2019, in C# code) Steps :
write this :
namespace myNameSpace
{
class myClass
{ }
}
Then hit return while in between the class braces, it did this :
namespace myNameSpace
{
class myClass
{
}
}
Note the class closing brace not being under the opening one.
How can I have this instead, where is the formatting option ?
namespace myNameSpace
{
class myClass
{
}
}
Thanks,