Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            데이터집합 데이터 = new 데이터집합();

            데이터[0] = "공룡";
            데이터[1] = "나무";
            데이터[2] = "원숭이";
            데이터[3] = "거미";
            I반복자 반복자 = 데이터.반복자생성();

            while (!반복자.IsDone())
            {
                반복자.한방();
            }


            Console.ReadKey();
        }
Ejemplo n.º 2
0
 public 반복자(데이터집합 데이터집합)
 {
     this._데이터집합 = 데이터집합;
 }