C# 程序来打印两个列表中的所有公共元素


首先创建两个列表 -

List list1 = new List() {40, 20, 60, 3, 55};
List list2 = new List() {20, 70, 55, 80};

要查找公共元素,请使用 Intersect -

list1.Intersect(list2)

以下是查找两个列表之间公共元素的完整代码 -

示例

 现场演示

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

namespace Demo {
   class Program {
      static void Main(string[] args) {
         List list1 = new List() {40, 20, 60, 3, 55};
         List list2 = new List() {20, 70, 55, 80};
         Console.WriteLine("Common elements:");
         foreach(int value in list1.Intersect(list2))
         Console.WriteLine(value);
      }
   }
}

输出

Common elements:
20
55

更新于: 20-Jun-2020

2K+ 视图

开启你的 职业

完成课程以获得认证

现在开始
广告