예제 #1
0
파일: Program.cs 프로젝트: zhzack/.net
        static void Main(string[] args)
        {
            StrAggregate agg = new StrAggregate();

            foreach (string item in agg)
            {
                Console.Write(item);
            }
            Console.WriteLine();

            EasyStrAggregate easyAgg = new EasyStrAggregate();

            foreach (string item in easyAgg)
            {
                Console.Write(item);
            }
            Console.WriteLine();
        }
예제 #2
0
파일: Program.cs 프로젝트: zhzack/.net
 public StrIterator(StrAggregate strAggregate)
 {
     this.strAggregate = strAggregate;
 }