Automatic properties in Visual Studio "Orcas"
While working on "Orcas" and checking the new DWM API in Windows Vista I found out that you can write something like this:
public class Sample
{
public string Guid
{
get;
set;
}
}
This code will simply generates to :
