2つのコレクションの積集合を取得するには、.Intersectを使用します。
※積集合は重複した要素のみ取得します。
サンプル
例1)List<int>型の場合
using System.Collections.Generic;
using System.Linq;
//int型のList
List<int> list1 = new List<int>(){1, 2, 3};
List<int> list2 = new List<int>(){3, 4, 5};
//list1とlist2をIntersectする
var result = list1.Intersect(list2).ToList();
結果
{3}
3のみ重複しているため対象となります。
例2)Dictionaryの場合
using System.Collections.Generic;
using System.Linq;
//Dictionary1
Dictionary<string, string> dic1 = new Dictionary<string, string>();
dic1.Add("01", "札幌");
dic1.Add("02", "東京");
dic1.Add("03", "名古屋");
//Dictionary2
Dictionary<string, string> dic2 = new Dictionary<string, string>();
dic2.Add("03", "名古屋");
dic2.Add("04", "大阪");
dic2.Add("05", "福岡");
//dic1とdic2をIntersectする
var result2 = dic1.Intersect(dic2).ToDictionary(x => x.Key, x => x.Value);
結果
["03", "名古屋"]
"03"のみ重複しているため、名古屋が対象となります。
備考
- LINQを使用するには、「using System.Linq;」の宣言が必要です。
- Intersectではコレクション要素で重複する要素のみ取得します。