Because the first example is really equivalent to:
public DoStuff(int level)
{
// ...
int temp = level+ 1;
DoStuff(level);
level = templevel + 1;
DoStuff(temp);
// ...
}
Note that you can also write ++level; that would be equivalent to:
public DoStuff(int level)
{
// ...
level = level + 1;
DoStuff(level);
// ...
}
It's best not to overuse the ++ and -- operators in my opinion; it quickly gets confusing and/or undefined what's really happening, and modern C++ compilers don't generate more efficient code with these operators anyway.
