Welcome to SpellCoder Sign in | Join | Help

March 2007 - Posts

http://msdn2.microsoft.com/en-us/library/xee0c8y7(VS.80).aspx Read More
I have been known to make a half joke about .Net developers in generals are lazy bastards  as an answer why there are very very few innovations created in .Net space in the realm of public software..Net makes excellent business software. Public software? Read More
Read More
I love C# 3.0 with its lambda expression, lazy evaluation, LINQ, anonymous types, etc. On the other hand you see in parts where they went silly (like the automatic property generator) or not far enough (no tuple as return method value)Let me talk about Read More
There is a little know feature of C# 3.0 called Partial method that people just find out recently.//Definition partial void partial void onNameChanged();   //Implementation partial void onNameChanged() {   //method body } This partial Read More
Download the March CTP here. Read More
ScottGu just made a post about the "automatic properties" on how it cut down on the clutter of defining the private field behind the property. This feature is a hack and should be ignored. The problem here are twofolds: You can only have one type of Read More
memcached is an open source caching technology behind xanga, a massive online community site (numbering in millions). Now it has a .NETframework client binding.   "The memcached server and clients work together to implement one global cache Read More