{ int[] a = new int[20]; Random b = new Random(); for (int s = 0; s <= a.Length - 1; s++) { a[s] = b.Next(0, 20); } foreach(int c in a) { Console.WriteLine(c); } Console.ReadLine(); }
int [] a =new int {1,2,3,4,5,}; foreach(int i in a) ( console.WriteLine(i) ) i的值等於a的值,for執行第一次循環的時候 i =a 的第一個值 1,第二次循環i=a的第二個值2,以此類推,五次循環,輸出i=12345
int[] a = new int[3, 2] { { 9, 99 }, { 3, 33 }, { 5, 55 } }; foreach (int i in a) { Console.Write("{0} ", i); }