I know it can be creates like:
TextBox[] tbsArray = new TextBox[2];
tbsArray[0] = textBox1;
tbsArray[1] = textBox2;
//or:
TextBox[] tbsArray = new TextBox[] { textBox1, textBox2 };
//or in a loop:
foreach(TextBox tb in new TextBox[] { textBox1, textBox2 })
{
//...
}
If there is any other way you would like to have it, let us know.
bye