Union、Intersect 和 except 的非 LINQ 实现
LINQ to object 具有非常有用的 Union
、Intersect
和 Except
方法。遗憾的是,我正在为一个客户工作,他们强制要求使用 .NET 2.0,因此 LINQ 不是一个选择。我查看了反射的代码,它根本没有很好地反转。
是否有 .NET 2.0 库或 Union
、Intersect
和 Except
的简单实现?
LINQ to objects has the incredibly useful Union
, Intersect
, and Except
methods. Sadly, there's a client I'm doing work for and they are mandating .NET 2.0 so LINQ is not an option. I looked through the reflected code and it didn't reverse well at all.
Is there a .NET 2.0 library or easy implementation of Union
, Intersect
, and Except
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有什么理由不使用 LINQBridge?获得 LINQ to Objects 的优点,同时仍以 .NET 2.0 为目标:)
Any reason not to use LINQBridge? Get your LINQ to Objects goodness while still targeting .NET 2.0 :)