The lambda says, “baaaaa”
LINQ allows you do define simple functions/methods in-line with the query you are doing. These are called lambda expressions. They have a special format to allow for in-line expressions. Take a look at: Basically this is: Rather then complicating things with full-blown LINQ queries lets cheat and just use simple arrays. For example: The where […]
. Read more