Ad
  • Custom User Avatar

    In this instance, there really isn't much of a difference between ++Count and Count++. It is slightly more efficient to do ++Count because the compiler knows that we will need to increment a variable before it gets it. So, it can get the variable and add to it in one swoop instead of getting the variable, realizing the variable need incrementing, and then incrementing. This is how it has been explained to me.