I took Sam Allen’s performance test and ran a similar test (below) on the Xbox 360 with XNA.
static string _backing; // Backing store for property
static string Property // Getter and setter
{
get
{
return _backing;
}
[...]