Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
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.