R
Raymond Du
Hi,
//The following c# code:
for (int i = 0; i<args.Length;i++)
{
int var1 = SomeFunction();
if (args > var1)
break;
}
//Question: will i and var1 still be available outside the for loop, say
from here?
Thanks in Advance
//The following c# code:
for (int i = 0; i<args.Length;i++)
{
int var1 = SomeFunction();
if (args > var1)
break;
}
//Question: will i and var1 still be available outside the for loop, say
from here?
Thanks in Advance