Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2 つのリストがあり、両方のリストに共通する要素が必要な場合は、次のコードを使用できます。
var listC = listA.Intersect(listB);
ただし、一般的ではない要素が必要な場合は? そして重複なし?交差で可能ですか?
ありがとう。