06.10.2010, 22:00
Which one is faster or is better to use?
While
For:
While
pawn Код:
new idx;
while (idx < 500)
{
DoSomething();
idx++;
}
pawn Код:
for(new c=0;c<500;c++)
{
DoSomething();
}