In this post I will be writing LINQ queries against an array of strings, an array of integers.Moreover I will be using LINQ to query an SQL Server database. I can use LINQ against arrays since the array of strings/integers implement the IENumerable interface...
In this post I would like to talk about a new feature in C# 3.0 that is called extension methods . Extension methods are used extensively with LINQ, so it is of vital importance that we get a good understanding of extension methods. The reason why extension...