0
kicks
Sweet: Some of the new stuff in .Net 3.x simply/examplyfied.
Just thought I put together a small class that shows some of the new features in .Net 3.x
// Oldschool
private int oldAge;
public int OldAge
{
get { return oldAge; }
set { oldAge = value; }
}
// Newschool
public int NewAge{get; set;}
// Note, you can't mix old/new, ie:
//public int NewAge { get; set{value + 4}; }