cory
cory

Reputation: 1031

How can I set Visual Studio to use K&R style bracketing?

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

Answers (3)

Matt Greer
Matt Greer

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

mahendra230668
mahendra230668

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

enter image description here

Upvotes: 4

Guffa
Guffa

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

Related Questions