예제 #1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Нечётные числа в квадрате:"); // TASK 1

            var collection = GetOddNumbers(new[] { 5, 1, 7, 5, 3, 4, 1, 7, 5, 4 });

            foreach (var item in collection)
            {
                Console.Write("{0} ", item);
            }

            Console.WriteLine("\n\nКоллекция месяцев:"); // TASK 2

            var monthsCollection = new MonthsCollection();

            foreach (var month in monthsCollection)
            {
                Console.WriteLine("[{0}] - {1} | days: {2}", month.SerialNumber, month.Name, month.DaysOfMonth);
            }

            Console.ReadKey();
        }
예제 #2
0
 public MonthsEnumerator(MonthsCollection collection)
 {
     this.collection = collection;
 }