Architect's Log

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

IEnumerable.Unionメソッド

Enumerable.Union(TSource) メソッド (IEnumerable(TSource), IEnumerable(TSource)) (System.Linq)
既定の等値比較子を使用して、2 つのシーケンスの和集合を生成します。

SQLでは、UNIONに相当します。

ソースコード

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

namespace LinqSample {
    class Program {
        static void Main(string[] args) {
            IEnumerable<int> numbers1 = new List<int>() { 1, 2, 3, 4, 5 };
            IEnumerable<int> numbers2 = new List<int>() { 6, 5, 4, 3, 2 };

            IEnumerable<int> union = numbers1.Union(numbers2);

            foreach (int number in union) {
                Console.WriteLine(number);
            }

            Console.ReadKey();
        }
    }
}

実行結果