Csharp/CSharp Tutorial/Data Structure/Array IEnumerator — различия между версиями

Материал из .Net Framework эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 15:31, 26 мая 2010

Get its enumerator for an array

using System;
using System.Collections;
class MainClass
{
   static void Main()
   {
      int[] intArray = { 10, 11, 12, 13 };         
      IEnumerator ie = intArray.GetEnumerator();   
      while (ie.MoveNext() == true)               
      {
         int i = (int)ie.Current;                 
         Console.WriteLine("{0}", i);             
      }
   }
}
10
11
12
13