I'm trying to find a way to have Resharper format a switch statement like this (using Ctrl+E, Ctrl+C):
switch (int_i) {
case 1 : Console.WriteLine("You entered one");
break;
case 2 : Console.WriteLine("You entered two");
break;
case 3 : Console.WriteLine("You entered three");
break;
default : Console.WriteLine("Please enter a number between 1 and 5");
break;
}
I personally don't like this style at all, but it's being used in a book I'm studying and I'd like Resharper to help me format my code the same way.
There are two things to note here:
default
is longer than case 3
there has to be an extra space before the colon on case 1
, case 2
and case 3
.Can Resharper do this?
You can customize code formatting in ReSharper - Options - Languages - C# - Formatting Style, but it seems there is nothing about you are asking. Closest thing I found - braces formatting in Switch statement.
I know this is old, but it is possible. It's just not obvious. I just now stumbled on to it.
Go to ReSharper Options/Code Editing/C#/Format Style/Braces Layout. Select 'Block under "case" label' to see that the sample is wrong. Now select Other. Set it to "At end of line (K&R Style)". Nothing in the sample will change. Select 'Block under "case" label' again to see that the formatting is now correct.
I prefer BSD style which also works.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With