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 }

 

posted @ 2020-04-16 08:37  星空沃土  阅读(71)  评论(0编辑  收藏  举报