How can I find the intersecttion between 2 arrays in C#, in a fast way?
There's the Intersect extension method on Enumerable. It works on any IEnumerable<T> including arrays.
IEnumerable<T>
2.1m questions
2.1m answers
60 comments
57.0k users