两个List之间的区别

发布于 2024-11-07 15:34:34 字数 231 浏览 0 评论 0原文

我可以使用奇特的 LINQ 查询来返回 List,方法是将其传递到方法中 (ListoldList、ListnewList),以及看看两个列表之间有什么区别?

基本上,我想获取添加到 newList 中但在 oldList 中不可用的所有文件的列表。

Can I use a fancy LINQ query to return a List<FileInfo>, by passing it in a method (List<FileInfo> oldList, List<FileInfo> newList), and seeing what differences there are between the two lists?

Basically, I want to get a list of any files added to newList, that were not available in oldList.

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

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

发布评论

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

评论(1

别在捏我脸啦 2024-11-14 15:34:34

给定 FileInfoIEqualityComparer 如下所示:

public class FileInfoEqualityComparer : IEqualityComparer<FileInfo>
{
    public bool Equals(FileInfo x, FileInfo y)
    {
        return x.FullName.Equals(y.FullName);
    }

    public int GetHashCode(FileInfo obj)
    {
        return obj.FullName.GetHashCode();
    }
}

您可以使用以下代码来查找两个列表之间的差异:

var allItems = newList.Union(oldList);
var commonItems = newList.Intersect(oldList);
var difference = allItems.Except(commonItems, new FileInfoEqualityComparer());

要查找添加到 newList 列表中的项目,使用以下代码:

var addedItems = newList.Except(oldList, new FileInfoEqualityComparer());

Given an IEqualityComparer for FileInfo shown below:

public class FileInfoEqualityComparer : IEqualityComparer<FileInfo>
{
    public bool Equals(FileInfo x, FileInfo y)
    {
        return x.FullName.Equals(y.FullName);
    }

    public int GetHashCode(FileInfo obj)
    {
        return obj.FullName.GetHashCode();
    }
}

You can use following code to find the difference between two lists:

var allItems = newList.Union(oldList);
var commonItems = newList.Intersect(oldList);
var difference = allItems.Except(commonItems, new FileInfoEqualityComparer());

To find items added to newList list, use following code:

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