如何比较两个列表中的值

发布于 2024-10-26 01:58:22 字数 329 浏览 0 评论 0原文

我有一个列表 Users = new List();

我有另一个列表 List();

UsersList = new List<string>();

我需要将 Users 的值与 TestList.Name 进行比较。如果 TestList.Name 中的值存在于 Users 中,则不得将其添加到 UsersList,否则,我必须将其添加到 UsersList。

我怎样才能使用 Linq 做到这一点?

I have a list as Users = new List<string>();

I have another List, List<TestList>();

UsersList = new List<string>();

I need to compare the values from Users with TestList.Name. If the value in TestList.Name is present in Users, I must must not add it to UsersList, else, I must add it to UsersList.

How can I do that using Linq?

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

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

发布评论

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

评论(2

夜唯美灬不弃 2024-11-02 01:58:25

在你的列表上循环 - 例如:

foreach (string s in MyList)
{
   if (!MyList2.Contains(s))
   {
      // Do whatever ; add to the list
      MyList2.Add(s);
   }  
}

..这就是我解释你问题的方式

Do a loop on you list - for example :

foreach (string s in MyList)
{
   if (!MyList2.Contains(s))
   {
      // Do whatever ; add to the list
      MyList2.Add(s);
   }  
}

..that's how I interpreted you question

爱的十字路口 2024-11-02 01:58:24

在我看来,这就像您想要的:

List<string> usersList = testList.Select(x = > x.Name)
                                 .Except(users)
                                 .ToList();

换句话说,“使用 testList 中的所有用户名称,除了 users 中的用户名称,然后转换结果到List”。

假设您在 usersList 中没有任何内容。如果 usersList 已存在并包含一些值,您可以使用:

usersList.AddRange(testList.Select(x = > x.Name).Except(users));

请注意,这不会考虑 usersList 中的现有项目,因此你最终可能会得到重复的结果。

It looks to me like you want:

List<string> usersList = testList.Select(x = > x.Name)
                                 .Except(users)
                                 .ToList();

In other words, "use all the names of the users in testList except those in users, and convert the result to a List<string>".

That's assuming you don't have anything in usersList to start with. If usersList already exists and contains some values, you could use:

usersList.AddRange(testList.Select(x = > x.Name).Except(users));

Note that this won't take account of the existing items in usersList, so you may end up with duplicates.

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