Sometimes (but not always!?) when I paste or end a line with a semi-colon, Visual Studio will add a space after the if
statement! For example, when pasting, this
if()
will turn into this:
if (condition)
and, when completing a line, this
if(condition)
DoSomething()
will turn into this:
if (condition)
DoSomething();
Having to constantly delete this space (sometimes twice!) is driving me absolutely Bonkers! It seems to happen with if
and while
but not for
.
I cannot find anything relating to this in the VS options. I do have Resharper installed, but it is set to not add the space automatically:
Why is Visual Studio punishing me?