public DoStuff(int level)
{
// DoStuff(level);
DoStuff(level++);
// level = level + 1;
// DoStuff(level);
DoStuff(level++);
// here, level's value is 1 greater than when it came in
}
It actually increments the value of level.
public DoStuff(int level)
{
// int iTmp = level + 1;
// DoStuff(iTmp);
DoStuff(level+1);
// here, level's value hasn't changed
}
doesn't actually increment the value of level.
Not a huge problem before the function call, but after the function call, the values will be different.
