推 wesley412:了解~謝謝指教!! 07/21 13:13
for(i=0; i < 480; i++)
: {
: for(j=0; j < 640; j++)
: {
: textBox1.text=arrR[j,i].Tostring;
你這樣每次的值都會一直覆蓋,所以最後只會秀出最後一個值
textBox1.Text +=String.Format("{0}",arr[i,j]);
這想就會一直累家下去
不知道這樣是你想要的嗎?
: }
: }
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 210.64.17.201