Less Rules Imposed The Better
Recently I read an article from Jeff Atwood, where he basically claimed the brevity leads to better code. Personally I think his example he gave: if »
Recently I read an article from Jeff Atwood, where he basically claimed the brevity leads to better code. Personally I think his example he gave: if »
The ?? operator returns the left-hand operand if it is not null, or else it returns the right operand. int? i = null; int count = i ?? 0; The »
Introduction In this post we are going to go over what it takes to create a control, and more specifically a Vista Search Box like control. »
Many developers use a pattern called ORM or Object Relation Mapping to generate data layers for their application. Many other developers choose to create their own »
Unit testing is an important part of developing high quality software. Many of you are probably not familiar with the term Unit Testing. Wikipedia defines Unit »
I was reading Tim Sneath's blog today and noticed his post on the release of a Visual Studio 2005 Update for Windows Vista was released. It »