Default get/set accessors:
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
}
Property initialization:
Person author = new Person { Name = "Jay Miller", Age = 40 };
From this article: http://www.codeguru.com/csharp/csharp/net30/article.php/c14427/