当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Linq Intersect()用法及代码示例


在这里,我们将使用 Linq Intersect() 方法找到两个列表的公共整数。然后我们将在控制台屏幕上打印常用数字。

程序:

下面给出了演示 Linq Intersect() 方法的源代码。给定的程序在 Microsoft Visual Studio 上编译并成功执行。

//C# Program to demonstrate Linq Intersect() method.

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

class Demo
{
    static void Main(string[] args)
    {
        List<int> List1 = new List<int>() { 10, 20, 30, 40, 50 };
        List<int> List2 = new List<int>() { 10, 40, 60, 80, 90 };

        var result = List1.Intersect(List2);

        foreach (var value in result)
        {
            Console.WriteLine(value + " ");
        } 
    }
}

输出:

10
40
Press any key to continue . . .

说明:

在上面的程序中,我们创建了下面给出的两个整数列表。

List<int> List1 = new List<int>() { 10, 20, 30, 40, 50 };
List<int> List2 = new List<int>() { 10, 40, 60, 80, 90 };

在这里,我们使用 Linq Intersect() 方法使用以下代码查找两个列表的公共值。

var result = List1.Intersect(List2);

然后我们使用以下代码在控制台屏幕上打印公共值。

foreach (var value in result)
{
    Console.WriteLine(value + " ");
} 



相关用法


注:本文由纯净天空筛选整理自 C# program to demonstrate the example of Linq Intersect() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。