Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

IEnumerable.Distinctメソッド

Enumerable.Distinct(TSource) メソッド (IEnumerable(TSource)) (System.Linq)
既定の等値比較子を使用して値を比較することにより、シーケンスから一意の要素を返します。 ...

SQLでは、SELECT DISTINCTに相当します。

ソースコード

using System;
using System.Linq;

namespace LinqSample {
    class Program {
        static void Main(string[] args) {
            int[] numbers = new int[] { 1, 2, 3, 3 };
            // 1,2,3の合計
            Console.WriteLine(numbers.Distinct().Sum());
            Console.ReadKey();
        }
    }
}

実行結果