使用 linq 查询 ilist

发布于 2024-11-11 05:26:43 字数 163 浏览 7 评论 0原文

我想使用 linq 从 ilist 获取数据,该数据具有一个类的类型 - 例如 - iList - 我所知道的一切,在这个 iList 中保存了电子邮件和姓名,但是这个 iList 没有字符串类型,而是这个类。 我怎样才能得到它们? 如果能将这些数据放入我自己的列表中,那就太好了 有任何提示如何做到这一点吗?

I would like to get data with linq from ilist which has type of one class - for example - iList - everything I know, that in this iList are saved emails and names, but this iList has no string type, but this class.
How can I get them?
It would be great to put this data to my own List
Any hint how to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

转瞬即逝 2024-11-18 05:26:43
IList<MyNameAndEmailClass> myList = GetMyList();
var emailList = myList.Select(x => x.EmailAddress).ToList();

emailList 现在将仅包含电子邮件地址。

IList<MyNameAndEmailClass> myList = GetMyList();
var emailList = myList.Select(x => x.EmailAddress).ToList();

emailList will now contain only the email addresses.

抽个烟儿 2024-11-18 05:26:43

这是你想要的吗?

var result = list.OfType<SomeType>()

Is this what you want?

var result = list.OfType<SomeType>()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文