With the recent release of .Net 3.5 one of the new features they added is Automatic Properties.
Automatic Properties allow you to NOT need to create an instance variable for your properties (assuming you only need simply getter/setter functionality), the compiler will do it for you.
Here is a simple example:
public string SomeProperty { get; set; }
Anyway, I have been using .Net 3.5 exclusively for the past few weeks and I have just fallen in love with Automatic Properties. God I wish this would have been added a LONG TIME AGO..... Oh well
And before anyone says anything, public member variables are NOT the same.
Till next time,
P.S. I have been coding for the past 8 years, I know that .Net has not been out that long.