I have some LINQ code (unfortunatley not to hand!) to get duplicates from a list object. However, the duplicates in the original list are like so:
Item A
Item A
Item A
Item B
Item B
Item C
Item C
Item C
Item C
etc...
What I'd like to do is extend the LINQ query to get all of those duplicate instances, not just the first instance in a duplicate pair, or trio.
What would be an ideal query to get this?