Reputation: 1031
I really don't like this style of formatting:
Class AwesomeClass
{
private static void AwesomeMethod()
{
}
}
Can I make it format my code like this?
Class AwesomeClass {
private static void AwesomeMethod() {
}
}
Upvotes: 102
Views: 30877
Reputation: 62037
Go to Tools > Options > Text Editor > C# > Formatting > New Lines.
In recent version of Visual Studio (at least 2017):
Tools > Options > Text Editor > C# > Code Style > Formatting > New Lines
Then just uncheck every option you see there.
Upvotes: 145
Reputation: 105
Tools->Options->Text Editor->C/C++->Formatting->New Lines
change all values to
"Keep on the same line, but add a space before"
then select a block and reformat with Ctrl + K, Ctrl + F
Upvotes: 4
Reputation: 700382
Tools > Options
Check "Show all settings"
Text Editor > C# > Formatting > New Lines
Uncheck the settings for where you want no extra newline added. Personally I always uncheck all items in this category.
Upvotes: 27