使用 lambda 连接对象的字符串属性
请考虑以下问题:
public class MyObject
{
public bool B;
public string Txt;
}
List<MyObject> list; //list of a bunch of MyObject's
使用 lambda 表达式,如何生成由这些对象的 Txt 的逗号分隔值组成的字符串,其中 B 为 true?
Please consider the following:
public class MyObject
{
public bool B;
public string Txt;
}
List<MyObject> list; //list of a bunch of MyObject's
With lambda expression, how can I produce a string consisting of comma separated values of Txt of those objects, where B is true?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于 .net 3.5:
对于 .net 4.0:
for .net 3.5:
for .net 4.0: