list2=newList();list2.Add("C");list2.Add(&quo"/> list2=newList();list2.Add("C");list2.Add(&quo">

首页  >  文章  >  后端开发  >  如何在 C# 中比较两个列表是否相等?

如何在 C# 中比较两个列表是否相等?

WBOY
WBOY转载
2023-08-26 19:37:081730浏览

如何在 C# 中比较两个列表是否相等?

设置两个列表 -

列表一个

List < string > list1 = new List < string > ();
list1.Add("A");
list1.Add("B");
list1.Add("C");
list1.Add("D");

列出两个

List < string > list2 = new List < string > ();
list2.Add("C");
list2.Add("D");

现在,如果以下返回不同的元素,则意味着列表不相等 -

示例

using System;
using System.Collections.Generic;
using System.Linq;

public class Demo {
   public static void Main() {
      List < string > list1 = new List < string > ();
      list1.Add("P");
      list1.Add("Q");
      list1.Add("R");

      Console.WriteLine("First list...");
      foreach(string value in list1) {
         Console.WriteLine(value);
      }

      Console.WriteLine("Second list...");
      List < string > list2 = new List < string > ();

      list2.Add("P");
      list2.Add("R");
      foreach(string value in list2) {
         Console.WriteLine(value);
      }

      Console.WriteLine("Difference in the two lists...");
      IEnumerable < string > list3;
      list3 = list1.Except(list2);
      foreach(string value in list3) {
         Console.WriteLine(value);
      }
   }
}

以上是如何在 C# 中比较两个列表是否相等?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除