博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IEnumerable中运用yield
阅读量:6572 次
发布时间:2019-06-24

本文共 970 字,大约阅读时间需要 3 分钟。

protected void Page_Load(object sender, EventArgs e)     {
var temp = Getreturn(); var temp1 = temp.ToList();//返回List
5条数据 temp.All(o =>//调用 Getreturn()中的for循环数据 {
Response.Write(o); return true; }); Getreturns().All(o => {
//o的类型为 IEnumerable
return true; }); //Response.Write(Getreturn()); } public IEnumerable
Getreturn() {
for (int i = 0; i < 5; i++) {
yield return "wode"; } } public IEnumerable
> Getreturns() {
List
list = new List
(); list.Add("wode"); list.Add("wode1"); for (int i = 0; i < 5; i++) { yield return list; } } }

转载于:https://www.cnblogs.com/shikyoh/archive/2011/07/22/2113875.html

你可能感兴趣的文章
git常用命令(史上最经典)
查看>>
(六)java版电子商务spring cloud分布式微服务b2b2c社交电商- commonservice-config配置服务搭建...
查看>>
ld framework not found "FileProvider" for architecture x86_64 报错
查看>>
@ModelAttribute注解使用
查看>>
如何写出让同事膜拜的漂亮代码?
查看>>
Python爬虫你需要积累这些基本知识_Python学习基础路线
查看>>
Unity(TransForm)
查看>>
Netty 源码深度解析(九) - 编码
查看>>
Spring Cloud Alibaba迁移指南(一):一行代码从 Hystrix 迁移到 Sentinel
查看>>
打包设置
查看>>
java B2B2C springmvc mybatis多租户电子商城系统 (七)springboot开启声明式事务
查看>>
(一)springmvc+mybatis+dubbo+zookeeper分布式架构 整合 - 平台导语简介
查看>>
网站模拟登录
查看>>
网卡驱动升级
查看>>
Oracle 常用函数
查看>>
web架构
查看>>
2. C# -- do{...} while();while(){...};for()的用法
查看>>
54. C# -- 泛型(Generic)
查看>>
我的友情链接
查看>>
【javascript】js检验注册密码强度效果
查看>>