C#使用迭代器把所有数组中的元素打印出来
1 using System; 2 using System.Collections; 3 4 namespace mjshili 5 { 6 class Program 7 { 8 static void Main(string[] args) 9 { 10 int[] p_int_array = new int[] { 1, 3, 5, 7 }; 11 IEnumerator P = p_int_array.GetEnumerator(); 12 while (P.MoveNext()) 13 { 14 Console.WriteLine(P.Current); 15 } 16 Console.ReadKey(); 17 18 } 19 } 20 }
要想进步,必须得努力地要求自己。
严格地完成每天的任务,勇于实践,方能进步。
要有一个明确的目标。