This question is locked. New answers and comments are not allowed.
I would like the following:
switch (eTest){ case eTest.test: case eTest.test2: { if (count == other) { int celebrate = 1; } int newInt = 2; break; } default: break;}
However, I keep getting:
switch (eTest){ case eTest.test: case eTest.test2: { if (count == other) { int celebrate = 1; } int newInt = 2; break; } default: break;}
And I can't seem to find a setting to change that would provide what I want, please assist. I've tried unselecting Indent Case Labels which worked as I thought and moves the Case Labels to the Switch brackets. I have also tried under Bracing Positions the different settings for Case label: Same Line/New Line/ Indented and non of those did what I was looking for.
Thank You!