-
Hi all, www.dotnetvideos.net giving away FREE Apress books listed below and also $495/- productivity toolset from Syncfusion for FREE. In addition, I would also like to inform you that I found out from their news letter that www.dotnetvideos.net added 11 more new videos to its web site for Editing and...
-
I especially like the lambda expressions. Imagine this: //returning even numbers List<int> arrInt=new List<int>{1,2,3,4,5,6,7,8,9,10};//new functionality in .NET 3.5 in .NET 2.0 List<int> evenInt=arrInt.FindAll(delegate(int i) { return i%2==0;}); in .NET 3.5 List<int> evenInt...