-
I realized that one of the biggest problems for novices is, the lack of knowledge in the learning progress so this blog have huge amount of ASP.NET material to help programmer to perform better in his/her Programming, coding skill. http://24x7aspnet.blogspot.com/
-
Hi, I would like to know if someone has documented UML for c# extension methods? Please point out some resources that i can read on. Thanks
-
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...