記述例 一次元配列の場合 private void button4_Click(object sender, EventArgs e) { string[] array = new string[8] { "-", "+", "*", "/", "%", "$", "#", "&" }; textBox1.Text = Convert.ToString(array.Length); } 多次元配列の場合 private void button5_Click(object sender, EventArgs e) { string[,] array = new string[4, 2] { { "ペンギン", "シロクマ"}, { "ラクダ", "ゾウ"}, { "クジラ", "シャチ" },{"ニワトリ","ハト"} }; textBox1.Text = Convert.ToString(