找传奇、传世资源到传世资源站!

C#设计模式之【迭代器模式】

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

C#设计模式之【迭代器模式】 C#语言基础-第1张using System;using System.Collections.Generic;using System.Text;namespace 迭代器模式{ class Program { static void Main(string[] args) { IList<string> a = new List<string>(); a.Add("大鸟"); a.Add("小菜"); a.Add("行李"); a.Add("老外"); a.Add("公交内部员工"); a.Add("小偷"); foreach (string item in a) { Console.WriteLine("{0} 请买车票!", item); } IEnumerator<string> e = a.GetEnumerator(); while (e.MoveNext()) { Console.WriteLine("{0} 请买车票!", e.Current); } Console.Read(); } }}

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复