How to make a control array in .Net ? in VB6.0 its easy just copy the textbox and then paste it and the output would be like this

Code:
txtA(0).Text
txtA(1).Text
txtA(2).Text
txtA(3).Text
txtA(4).Text
But here in .Net when i copy paste the textbox the result is ordinary textbox

Textbox1.Text
Textbox2.Text
Textbox3.Text