當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。