Cita:
string[] arrayNombres = new string[20];
int index= 0;
public void button1_Click(...){
if(index > 20){
MessageBox.Show("Llego al limite");
return;
}
arrayNombres [index] = textbox1.Text;
index++;
}
int index= 0;
public void button1_Click(...){
if(index > 20){
MessageBox.Show("Llego al limite");
return;
}
arrayNombres [index] = textbox1.Text;
index++;
}