I want to populate 40 textblocks on an application, they all have slightly different names but in common they end in a different number.
I would like to use:
for(int i = 1; i < 41; i++)
{
textblock_(i).text = array[i].ToString();
}
Is it possible to do this?
Thanks