I would like to use label arrays but it is not working i don't know what i am missing. Here is the code I am trying to get to work:
for (int x = 1; x <= 10; x++)
{
Label[] label1 = new Label[10];
label1[x] = new Label();
label1[x].AutoSize = true;
label1[x].Text = "text";
label1[x].Left +=10;
label1[x].Top +=10;
}
Controlscollection.