是否有适用于Where 和Select 的(T, int) 重载的LINQ 语法?
该查询
var q = from elem in collection
where someCondition(elem)
select elem;
将转换为
var q = collection.Where(elem => someCondition(elem));
是否有可转换为以下内容的 LINQ 语法?
var q = collection.Where((elem, index) => someCondition(elem, index));
The query
var q = from elem in collection
where someCondition(elem)
select elem;
translates to
var q = collection.Where(elem => someCondition(elem));
Is there a LINQ syntax that would translate to the following?
var q = collection.Where((elem, index) => someCondition(elem, index));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有 LINQ 语法。
一个简单的解决方法可能是:
No there's no LINQ syntax for that.
A simple work-around could be: