Enumerable.Concat(TSource) メソッド (System.Linq)
2 つのシーケンスを連結します。
SQLでは、UNION ALLに相当します。
ソースコード
using System; using System.Collections.Generic; using System.Linq; namespace LinqSample { class Program { static void Main(string[] args) { int[] list1 = new int[] { 1, 2, 3 }; int[] list2 = new int[] { 4, 5, 6 }; Console.WriteLine(list1.Concat(list2).Average()); Console.ReadKey(); } } }