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


C# Linq Distinct()用法及代碼示例


在這裏,我們將使用 Linq Distinct() 方法找到所有唯一的整數。然後我們將在控製台屏幕上打印所有不同的值。

程序:

下麵給出了演示 Linq Distinct() 方法的源代碼。給定的程序在 Microsoft Visual Studio 上編譯並成功執行。

//C# program to demonstrate Linq Distinct() method.

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

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


        var result = Numbers.Distinct();

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

輸出:

10
20
30
40
50
60
Press any key to continue . . .

說明:

在上麵的程序中,我們創建了整數列表。

List<int> Numbers = new List<int>() { 10, 20, 20, 30, 40, 40, 10, 50, 60 };

在上麵的列表中,有些值是重複的。然後我們使用以下代碼找到所有唯一值。

var result = Numbers.Distinct();

然後我們使用以下代碼在控製台屏幕上打印所有不同的值。

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



相關用法


注:本文由純淨天空篩選整理自 C# program to demonstrate the example of Linq Distinct() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。