Generic Value Type List CSV Extension

I came across a piece of code on my travels whereby a comma-separated string was split and then parsed into long values, ultimately returned to the method caller as a list of longs. A similar method was also created for operating on and converting values to integers, not particularly DRY code, but functioned fine. All […]

LINQ Joins – Multiple Match Conditions

Hi all, Just a very quick post on an interesting piece of LINQ knowledge demonstrating how to find common matches between two C# lists, whereby you want to include multiple matching conditions. To start, here is a typical LINQ statement (and setup) dealing with a single join condition, using the extension method approach (which I […]