For example I like to keep my right hand operands left aligned in the same col:
int a = 1;
string aLongVaribleName = "test";
But if I touch the code such as adding the ‘;’ at the end VS collapses it to:
int a = 1;
string aLongVaribleName = "test";
Is there any option to stop VS doing this?
1 Answer