Foreach не работает с переменными типа IEnumerable - C#

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

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

Добрый вечер. Пытаюсь разобраться с ошибкой: foreach не работает с переменными типа IEnumerable ,поскольку IEnumerable не содержит открытого определения для GetEnumerator. Код следующий:
Листинг программы
  1. Queue arr = new Queue(s1, s2, s20, s19, s3, day1, month1, year1, s7, s8, s25, s27, s9, day2, month2, year2, s13, s14, s26, s28, s15, day3, month3, year3);
  2.  
  3. foreach (Person1 b in arr.GetB(3)) //подчеркивает foreach
  4. {
  5. }
  6. ....
  7. public class Queue
  8. {
  9. private Person1[] queue;
  10. static int i=0;
  11. public Queue(string s1, string s2,string s20, string s19,string s3,double day1, double month1,double year1,
  12. string s7, string s8, string s25, string s27, string s9, double day2, double month2, double year2, string s13, string s14, string s26, string s28, string s15, double day3, double month3, double year3)
  13. {
  14. queue = new Person1[] { new Person1(s1, s2, s20, s19, s3, day1, month1, year1) ,
  15. new Person1(s7, s8, s25, s27, s9, day2, month2, year2) ,
  16. new Person1(s13, s14, s26, s28, s15, day3, month3, year3) };
  17. }
  18.  
  19. public IEnumerable GetB(int max) //подчеркивает IEnumerable GetB и пишет:не может быть итератором,поскольку IEnumerable //не явл.типом интерфейса итератора
  20. {
  21. for (int i = 0; i < max; i++)
  22. yield return queue[i];
  23.  
  24. }
  25.  
  26. }
В чем причина?Спасибо

Решение задачи: «Foreach не работает с переменными типа IEnumerable»

textual
Листинг программы
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6.  
  7. namespace fd
  8. {
  9.     class Person1
  10.     {
  11.         private string Name { get; set; }
  12.          public Person1(string name)
  13.          {
  14.              Name = name;
  15.          }
  16.          public override string ToString()
  17.          {
  18.              return Name;
  19.          }
  20.     }
  21.     public class Queue
  22.     {
  23.         private Person1[] queue;
  24.         static int i = 0;
  25.  
  26.         public Queue(string s1)
  27.         {
  28.             queue = new Person1[]
  29.             {
  30.                 new Person1("ab") ,
  31.                 new Person1("ba") ,
  32.                 new Person1("abba")
  33.             };
  34.         }
  35.  
  36.  
  37.         public IEnumerable GetB(int max)  //подчеркивает IEnumerable GetB и пишет:не может быть итератором,поскольку IEnumerable  //не явл.типом интерфейса итератора
  38.         {
  39.             for (int i = 0; i < max; i++)
  40.                 yield return queue[i];
  41.  
  42.  
  43.         }
  44.  
  45.  
  46.  
  47.     }
  48. }
  49.  
  50. using System;
  51. using System.Collections.Generic;
  52. using System.Linq;
  53. using System.Text;
  54.  
  55. namespace fd
  56. {
  57.     class Program
  58.     {
  59.         static void Main(string[] args)
  60.         {
  61.             Queue t=new Queue("hyukghj");
  62.             foreach (var s in t.GetB(2))
  63.             {
  64.                 Console.WriteLine(s);
  65.             }
  66.  
  67.             Console.Read();
  68.         }
  69.     }
  70. }

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


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

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

12   голосов , оценка 4.167 из 5

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

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

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