In this for loop is it possible to reference a different label with each iteration?
c#
Sorry for the mess of code. That was the only way I know how to get my point across. I'm used to php and vb, my c# is embarrassing.
c#
Code:
for (x = 1;x <=3; x++)
{
label & x.tostring & .visible = true;
}
Comment