private void button1_Click(object sender, EventArgs e)
{
List<int> ggyy=new List<int>(); //建立 LIST 叫GGYY型態為INT存數字
ggyy.Add(7788); //加入一組數字叫7788 而GGYY會以陣列方式存取 GGYY[0] ggyy.Add(9900); //加入 9900 GGYY[1]
foreach (int GO in ggyy) //foreach 會以GGYY的 COUNT值=2 執行兩次
//分別為GGYY[0]GGYY[1] {
MessageBox.Show(GO.ToString());//將會SHOW出兩次訊息
}
}
List class Form MSDN http://msdn.microsoft.com/zh-tw/library/6sh2ey19(v=VS.80).aspx
foreach Form MSDN http://msdn.microsoft.com/zh-tw/library/ttw7t8t6(v=VS.80).aspx
沒有留言:
張貼留言