This seems like it should be really simple to do but I just can't figure it out. I want to allow Visual Studio to keep auto formatting my code as it is, except for this part:
public SomeClass : BaseClass {
public SomeClass()
: base()
{
}
}
Why can't I have it look like this instead:
public SomeClass : BaseClass {
public SomeClass() : base() {
}
}
I looked through Tools -> Options -> Text Editor -> C# -> New Lines and can't find it. Is there a way I can change it to allow auto formatting and my second example?