show/hide this revision's text 3 Attempting to reach tag consistency for C# version numbers

C#3.5 C#3.0 Automatic properties, why not access the field directly?

show/hide this revision's text 2 edited body

With the new approach of having the get/set within the attribut of the class like that :

public string FirstName {
        get; set;
    }

why

Why simply not simply put the attribute FirstName public without accessor?

show/hide this revision's text 1

C#3.5 Automatic properties, why not access the field directly?

With the new approach of having the get/set within the attribut of the class like that :

public string FirstName {
        get; set;
    }

why simply not simply put the attribute FirstName public without accessor?