Tony B.
- Total activity 2
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
-
Created Configure ReSharper to have blank line *AFTER* break in switch statement
Here's what my switch statement gets formatted to: ```C# switch (x) { case 1: break; case 2: break; } ... ``` what I would like to see is: ```C# switch (x){ case 1: ...