A class-type variable, parameter, field, return value, or other such storage location should be thought of as holding an "object id". If some object Foo has a property called Bar of some class type which is backed by field _Bar, and _Bar holds "object id#24601", then the statement Foo.Bar.Text = "George" will call the Text setter on object #24601 with a value of "George". Note that this statement will not modify object Foo itself (its field _Bar will have held "object id#24601" before the statement executes, and will still hold it after); it will likely, however, affect object #24601.
A struct-type storage location should be thought of as holding the contents of all its fields (both public and private). If Foo.Boz were a property of type Rectangle (which is a struct) and backing field _Boz, an access to Foo.Boz would create a new temporary instance of type Rectangle, all of whose fields would be copied from those of Foo._Boz. An attempt to read Foo.Boz.X would copy all the fields of _Boz to a temporary instance, and then access field X of that instance.
Note that some really old and evil C# compilers would interpret code like Foo.Boz.X = 5; as Rectangle temp; temp.X = 5;, discarding the resulting value of temp but not issuing any warning. Such compiler behavior caused some people to declare that structs should be "immutable" to ensure that such code will generate a compiler error rather than producing bogus behavior. Unfortunately, that belief persists to this day despite the fact that any decent compiler would forbid such code even if X was a mutable field.
Note that the proper idiomatic way to update a property of a mutable struct type is:
Rectangle temp = MyListOFRectangles[5];
temp.X = 5;
MyListOFRectangles[5] = temp;
If Rectangle is known to have a public integer field named X, and MyListOfRectangles is a List<Rectangle>, one doesn't need to know about any of any of Rectangle's other properties, constructors, etc. to know that the above code will change MyListOfRectangles[5].X but not affect any other property of MyListOfRectangles[5], nor any property of MyListOfRectangles[4]. Nice, clear, and easy. Exposed-field structs allow piece-wise editing of values in a manner which is clear and consistent, unlike any other kind of data type.
Personis a class, then the getter will return a reference to thePersonobject. That object will then be mutated. The private fieldperson1is another reference to the same object. But ifPersonwere a struct then the getter would return a value which would be a copy of the value ofperson1. Therefore even your first code wouldn't work in casePersonwas a value-type. – Jeppe Stig Nielsen Nov 19 '12 at 14:26