using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace 泛型
{
class Farm<T>:IEnumerable<T>
where T:Animol
{
private List<T> animols = new List<T>();
public List<T> Animol
{
get { return animols; }
}
public IEnumerator<T> GetEnumerator()
{
return animols.GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return animols.GetEnumerator();
} //求红色标注的几句的意思 和 作用 越详细越好 小弟 越是感激。。。。
}
}
慕森卡
忽然笑
智慧大石
qq_笑_17