Linq to Xml 翻译指南
有人可以帮忙解释一下这是什么意思吗:
... .Select(Func<XElement, XElement>selector)
请提供一个应该作为参数输入的示例,我们将不胜感激。
还发现命名这个问题有点困难。建议也将不胜感激。
Can someone help with an explanation of what does this mean:
... .Select(Func<XElement, XElement>selector)
Please an example of what should go in as parameter will be appreciated.
Also found it a little bit difficult naming this question. Suggestion will also be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个以 XElement 作为参数并返回 XElement 的函数,因此例如:
我不太确定是否必须先将其分配给变量,您可能可以这样做:
尝试一下(如果它有效:))
哦,有关更多信息,请参阅 msdn 文章,它还解释了如何使用委托:
以及如何使用 lambda,例如:
或者,在本例中,直接使用 lambda:
按照 Pavel 的评论进行编辑
It's a function taking XElement as argument and returning an XElement, so for instance:
I'm not interely sure if you have to assign it to a variable first, you could probably just do this:
give it a try (and let me know if it works :) )
oh and for more information, here's the msdn article, it also explains how to use delegates:
and how to use lambdas, for instance:
or, in this instance, use the lambda directly:
edited it following Pavel's comment