wordpress站长主题,seo推广培训课程,商务网站建设营销,保洁公司怎么注册我这个虾米#xff0c;今天才知道foreach语句是这样解析的#xff0c;惭愧啊#xff01;幸好我最新在原生态的学习这门编程语言。 //程序中我们这样写foreachforeach (Person item in Persons){Console.WriteLine(item);}
//其实如果要使用foreach,需要实现IEnumerator接口今天才知道foreach语句是这样解析的惭愧啊幸好我最新在原生态的学习这门编程语言。 //程序中我们这样写foreachforeach (Person item in Persons){Console.WriteLine(item);}
//其实如果要使用foreach,需要实现IEnumerator接口于是便这样解析IEnumeratorPerson enumerator Persons.GetEnumerator();while (enumerator.MoveNext()){Person p enumerator.Current;Console.WriteLine(p);} 转载于:https://www.cnblogs.com/zhangxj-sun/archive/2012/10/11/foreach.html