small question regarding foreach - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: small question regarding foreach (
/showthread.php?tid=518844)
small question regarding foreach -
DavidBilla - 11.06.2014
what would be basically the difference between both these codes?
pawn Код:
foreach(new i:Player)
{
//function
}
pawn Код:
foreach(Player,i)
{
//function
}
Re: small question regarding foreach - Patrick - 11.06.2014
Quote:
Originally Posted by DavidBilla
what would be basically the difference between both these codes?
pawn Код:
foreach(new i:Player) { //function }
pawn Код:
foreach(Player,i) { //function }
|
No difference.