Code formatting of if else
Answered
Hey,
I can not find a setting to make code look like :
if (a) do1();
else do2();
instead of
if (a) do1();
else
do2();
do2() is always go to the next line
How can I make do2() be on the same line as else statement?
Please sign in to leave a comment.
I test it, its work