Невозможно привести тип объекта
"System.Collections.Generic.List 1[NorthwindMVC3.Models.Product]" to
the type
of"System.Collections.Generic.IEnumerator
1 [NorthwindMVC3.Models.Product]". \
public IEnumerator<Product> GetEnumerator()
{
IEnumerable<Product> myEnumerable = Products.ToList();
return (IEnumerator<Product>) myEnumerable;
}
public class ProductsList : IEnumerable<Product>
{
public ProductsList()
{
Products =new List<Product>();
}
public List<Product> Products { get; private set; }
Почему я не могу?