Enumerable.Intersect(TSource) メソッド (IEnumerable(TSource), IEnumerable(TSource)) (System.Linq)
既定の等値比較子を使用して値を比較することにより、2 つのシーケンスの積集合を生成します。
2つのシーケンスの両方に存在する要素を返します。
SQLでは、INTERSECTに相当します。
ソースコード
using System; using System.Linq; namespace LinqSample { class Program { static void Main(string[] args) { int[] numbers1 = { 1, 2, 3, 4 }; int[] numbers2 = { 3, 4, 5, 6 }; // 3, 4 Console.WriteLine(numbers1.Intersect(numbers2).Sum()); Console.ReadKey(); } } }