使用 LINQ 查找两个集合中都存在的元素
假设我有两个集合,
int[] foo = { 1, 2, 3, 4 };
int[] bar = { 2, 4, 6, 8 };
使用 linq 选择两个集合中存在的值的最简单方法是什么?
即包含 2 和 4 的集合。
Say I have two collections
int[] foo = { 1, 2, 3, 4 };
int[] bar = { 2, 4, 6, 8 };
What would be the simplest way using linq to select values that exist in both collections?
i.e. a collection containing 2 and 4.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)