作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 List<Broadcast>
和 Broadcast
对象有一个名为 Guid
的属性.现在我需要找到所有 Broadcast
该列表中的对象 Guid
属性不是 List<Guid>
中的项目.我找到了 Except();
的解决方案但它对我不起作用。
Broadcasts.Where(x => x.Guid).Except(readBroadcasts);
我做错了什么?
最佳答案
这里有一个方法可以做到:
List<Guid> excludeGuid = ..... // You init guids you want to exclude
List<Broadcast> result = Broadcasts.Where(x => !excludeGuid.Contains(x.Guid)).ToList() ;
关于c# - 从列表 A 中选择属性不在列表 B 中的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24425631/
我是一名优秀的程序员,十分优秀!