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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。