我可以用 lambda 得到任何简洁的信息吗?
这些天我用 lambda 编写了很多代码。
return _schema.GetAll<Node>()
.ToList()
.FindAll(node => node.Type == NodeType.Unmanaged)
.Cast<Shape>()
.ToList();
注意:GetAll() 返回一个 IList。
我能得到更简洁的吗?
I'm writing a lot of code with lambdas these days.
return _schema.GetAll<Node>()
.ToList()
.FindAll(node => node.Type == NodeType.Unmanaged)
.Cast<Shape>()
.ToList();
Note: GetAll() returns an IList.
Can i get any terser?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
后:
After:
这应该有效。
如果您的方法的返回类型为
IEnumerable
,则无需调用ToList()
。您也可以这样写(使用
IEnumerable
返回类型):This should work.
If your method had a return type of
IEnumerable<Shape>
you wouldn't need to callToList()
.You could also write it like this (with
IEnumerable<Shape>
return type):