Hello! I have a simple query that suppose I have to put values on the lables from a array so instead of writing individual names for assigning values in lables from an array...can I treat Lables as Arrays so that i recogise them by its index for an example.....Here is unmanaged or untrue code....
Code:
label1= a[i];
i++;
label2=a[i];
i++;
label3=a[i];


//So Instead Of above code  Is there any way to  Use the method of following example??
for(i=0;i<9;i++)
{
  label[i]=a[i];
}

Thanks......