up vote 16 down vote favorite
2
share [g+] share [fb]

I'm a bit confused on the point of Automatic properties in C# e.g

public string Forename{ get; set; }

I get that your saving code by not having to declare a private variable, but whats the point of a property when your not using any get or set logic? Why not just use

public string Forename;

I'm not sure what the difference between these 2 statements is, I always thought you used properties if you wanted additional get/set logic?

link|improve this question

feedback

9 Answers

up vote 50 down vote accepted

Properties can have code put into them without breaking contract, fields can't have code put into them without changing them to properties (and breaking the interface). Properties can be read only or write only, fields can't. Properties can be data bound, fields can't.

link|improve this answer
3  
Short and sweet. Plus one. – Kevin Thiart Aug 18 '09 at 15:37
You have to put your own backing field. Automatic properties let you not worry about that now, but still plan for the future, though - see my answer for details. – Reed Copsey Aug 18 '09 at 15:38
1  
@Gav, Automatic properties are simple, and dumb. To add logic, you would have to turn it into a normal property. Either both get and set are automatic, or neither are. – Nader Shirazie Aug 18 '09 at 15:38
+1 I've heard a lot of explanations, and this one is by far the clearest. – Robert Harvey Aug 18 '09 at 15:40
ok just to make sure I got this right, automatic properties are pretty much a placeholder giving you the option to remove them at some point and replace them with a property? – Gavin Aug 18 '09 at 15:42
show 3 more comments
feedback

It is meant that you expect to add the logic later.

If you do so and have it as property from the beginning, you will not have to rebuild the dependent code. If you change it from a variable to a property, then you will have to.

link|improve this answer
1  
This is not correct. It is not meant that you expect to add the logic later. There is no intention of this inferred anywhere. It is literally just shorthand to make writing the proper code (property vs. field) easier to do. – Charles Boyung Jun 10 '10 at 15:31
feedback

You can write

public string Forename{ get; private set; }

to get read-only properties... Still not nearly as versatile as real properties, but it's a compromise that for some works.

link|improve this answer
feedback

I'm not sure what the difference between these 2 statements is, I always thought you used properties if you wanted additional get/set logic?

In the first case, the compiler will automatically add a field for you, and wrap the property. It's basically the equivalent to doing:

private string forename;
public string Forename
{
    get
    { 
        return this.forename;
    }
    set
    {
        this.forename = value;
    }
}

There are many advantages to using properties over fields. Even if you don't need some of the specific reasons, such as databinding, this helps to future-proof your API.

The main problem is that, if you make a field, but in v2 of your application, need a property, you'll break the API. By using an automatic property up front, you have the potential to change your API at any time, with no worry about source or binary compatibility issues.

link|improve this answer
feedback

Public data members are evil (in that the object doesn't control modification of it's own state - It becomes a global variable). Breaks encapsulation - a tenet of OOP.

Automatic properties are there to provide encapsulation and avoid drudgery of writing boiler plate code for simple properties.

public string ID { get; set;}

You can change automatic properties to non-automatic properties in the future (e.g. you have some validation in a setter for example)... and not break existing clients.

string m_ID;
public string ID
{
   get { return m_ID; }
   set 
   { 
     //validate value conforms to a certain pattern via a regex match
     m_ID = value;
   }
}

You cannot do the same with public data attributes. Changing a data attribute to a property will force existing clients to recompile before they can interact again.

link|improve this answer
That's true to an extent but OTOH public properties aren't much better than public data, at encapsulating: a tenet of OOP is "tell don't ask", whereas using properties (to get an object's internal state) is still asking rather than telling. – ChrisW Aug 18 '09 at 15:40
1  
Well... I'd beg to differ, IMO public properties are much better than global variables. Tell don't ask - I take it as a heuristic for good OO design ; there are exceptions of course e.g. if it's a class that is tasked with polling n devices and exposing an overall status. It's job is to compute and convey the latest status - and you'd have to 'ask', diff clients may take diff actions based on the status. A DAL would also need ask-methods. – Gishu Aug 18 '09 at 16:07
feedback

When adding auto properties the compiler will add get set logic into the application, this means that if you later add to this logic, and references to your property from external libraries will still work.

If you migrated from a public variable to a property, this would be a breaking change for other libraries that reference yours - hence, why not start with an auto property? :)

link|improve this answer
Excellent answer. I thought there was no difference until you brought up references. – Mark Beckwith Aug 18 '09 at 16:32
feedback

For one, you can set the property to virtual and implement logic in an inheriting class. You can also implement logic in the same class afterwards and there won't be side-effects on any code relying on the class.

link|improve this answer
feedback

Not all properties need get/set logic. If they do, you use a private variable. For example, in a MV-something pattern, your model would not have much logic. But you can mix and match as needed.

If you were to use a field like you suggested in place of a property, you can't for example define an interface to describe your class correctly, since interfaces cannot contain data fields.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.