Software

PDC : The C# 4.0 and the future of the C# language

I had been watching the PDC session of C# 4.0 which is presented by Anders Hejlsberg. First of all , it was a great, even though there were some folks who came to just applause the guy:) Starting from the release of 3.0 more functional programming stuff has integrated into C# and now it is time to dynamism! dynamic my = SomethingFromSomeWhere(); after this line , you are gonna loose your intellisense , but you will get the dynamism. The check will be done in runtime. The difference between var and dynamic , is basically , var is kinda trick that the language...

Just started with pragmatism

Back in couple of years ago , I remember , somebody told me , you've got brain killed by programming when you've reached your thirties.I though that time, I should run out of programming as soon as possible. Well , I kinda run out already, but from my current point of view , the real programming starts at 30ies. It is not the programming that kills you ,it is the business that makes you got brain killed! It is a challenging job , but it also requires the good understanding of the processes and people rather than the tools. It...

How to replace rows of a html table using javascript

Replace the rows

Web Message Board

 On this week's Code Project articles , you might find quite satisfying .NET 2008 ASP.NETweb message board application which is quite well explained.I though you may want to check it out.  http://www.codeproject.com/KB/aspnet/VS2008MessageBoard1.aspx 

Validation library using C# 3.0 lambda expressions

One of the top features in C# 3.0 is Lambda expression. A Validation Library has been written , and published in Code Project Articles on this week.  http://www.codeproject.com/KB/cs/ValidationUsingLambdas.aspx   You may find the below link useful for starting Lambda Expression. http://www.developer.com/net/csharp/article.php/3598381  The 2nd link is useful for comparing what we were doing before , and how we can improve our coding by using Lambda Expression. The Syntax of Lambda Express is quite confusing but you will get used to it !