显示每个数组元素 1 到 9 但不显示第 10 和第 11 个元素的消息框?为什么我无法达到第 10 个和第 11 个元素,我也尝试用富文本框做,但我再也看不到
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
int i;
int[] array1 = new array1[11];
private void textBox1_TextChanged(object sender, EventArgs e)
{
try
{
array1[i] = int.Parse(textBox1.Text) % 10;
MessageBox.Show(dizi[i].ToString());
}
catch
{
if (i > 11)
{
//MessageBox.Show("it can't be big than 11");
}
}
i++;
}
}