int[] array=new int[]{1,2,3,4,5};for(int i=0; i{ this.textBox1.Text += array[i].ToString()+"_";}MessageBox.Show(this.textBox1.Text);
显示的消息为1_2_3_4_5_