Is constructing and using a manual lookup (ILookup<T>) approach any faster than using a join with Join or GroupJoin on a local IEnumerable<T> sequence in LINQ?
I read somewhere that the compiler actually translates the inner sequence of Join and GroupJoin to ILookup<T> anyway.
What would ILookup<T> benefits of using it on it's own be?