Just came across a nasty gotcha today, where by we were trying to use the new C# 3.5 syntax var x = from item in items select new Item { ItemName = item.Name }; and getting a compile error. Turns out this was due to the need to have the following using
Read More...