for (int f = 1; f <= 6; f++)
{
textBox{f+11} = (loto[f].ToString());
}
嗨, 我想學習我自己的c#。對不起,這noobish問題:)如何在變量名上使用變量?
更spesific,這就是我想要的東西:
的快捷方式編寫代碼那樣:
textBox12.Text = loto[1].ToString();
textBox11.Text = loto[2].ToString();
textBox10.Text = loto[3].ToString();
textBox9.Text = loto[4].ToString();
textBox8.Text = loto[5].ToString();
textBox7.Text = loto[6].ToString();
此代碼工作,但我想它寫在for循環中
什麼是loto?顯示所有相關的代碼。什麼確切的錯誤? – 2013-04-27 08:23:27
我編輯了我的問題,謝謝你的幫助 – 1342 2013-04-27 08:28:55