Reputation: 13
I want to format the "else if" block like this:
if (something) {
} else
if (somethingElse) {
}
ReSharper is currently set to do this instead:
if (something) {
} else if (somethingElse) {
}
How can I change this?
Upvotes: 1
Views: 188