Automatic Properties In C# 3
One of the neat things in the next C# is that finally the language supports automatically generated properties. Basically the compiler will create code for you that implements the plumbing of the getters and the setters, which is generally VERY BORING to type.
In short, you can do this in a class:
1: public […]
