The pre-fix operator ++myInt is a way of reducing lines: increment the variable before passing it to someplace else. It's also a nice way to reduce readability, since it's uncommon.
MyMethod(++myInt);
vs.
myInt++;
MyMethod(myInt);
To me the second is a lot easier to read.