What is LINQ?
LINQ is 'Language Integrated Query'. LINQ queries allow you to extract data from enumerables (lists, arrays, etc.) in a similar way to how you'd query a database with SQL.
This was introduced in 2007, so it's been around for a while, a...