Ошибка в foreach: foreach statement cannot operate on variables of type 'System.Collections.IEnumerator' - C#

Узнай цену своей работы

Формулировка задачи:

Листинг программы
  1. using System;
  2. using System.Collections;
  3. namespace P
  4. {
  5. class Program
  6. {
  7. public static IEnumerator GetCollection(int[] arr)
  8. {
  9. foreach (int i in arr)
  10. if (i % 2 == 0)
  11. yield return i * i;
  12. else
  13. continue;
  14. }
  15.  
  16. static void Main(string[] args)
  17. {
  18. int[] arr = new int[200];
  19. for (int i = 0; i < 200; i++)
  20. arr[i] = i;
  21.  
  22. IEnumerator coll = GetCollection(arr);
  23. foreach( var i in coll)
  24. Console.WriteLine(i);
  25.  
  26. }
  27. }
  28. }

Решение задачи: «Ошибка в foreach: foreach statement cannot operate on variables of type 'System.Collections.IEnumerator'»

textual
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Collections;
  7.  
  8. namespace ConsoleApplication9 {
  9.     class Program {
  10.         public static IEnumerator GetCollection(int[] arr) {
  11.  
  12.             foreach (int i in arr)
  13.                 if (i % 2 == 0)
  14.                     yield return i * i;
  15.                 else
  16.                     continue;
  17.  
  18.         }
  19.         static void Main(string[] args) {
  20.             int[] arr = new int[200];
  21.             for (int i = 0; i < 200; i++)
  22.                 arr[i] = i;
  23.  
  24.  
  25.             IEnumerator coll = GetCollection(arr);
  26.  
  27.             while (coll.MoveNext()) {
  28.                 Console.WriteLine(coll.Current);
  29.             }
  30.             Console.ReadLine();
  31.         }
  32.     }
  33. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

6   голосов , оценка 4 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы