05.03.2016, 15:09
I have a question that blown my mind, what is the good looping code? Because i see a lot of them...
The foreach? This:
or:
What is the good and optimized?
The foreach? This:
Code:
for(new i=0; i <= GetPlayerPoolSize(); i++)
Code:
for(new i = GetPlayerPoolSize(); i > -1; i--)