vote up 11 vote down star
5

In C#, what makes a field different from a property, and when should a field be used instead of a property?

flag

12 Answers

vote up 23 vote down check

Properties expose fields. Fields should (almost always) be kept private to a class and accessed via get and set properties. Properties provide a level of abstraction allowing you to change the fields while not affecting the external way they are accessed by the things that use your class.

public class MyClass {
   // this is a field.  It is private to your class and stores the actual data.
   private string _myField;

   // this is a property.  When you access it uses the underlying field, but only exposes
   // the contract that will not be affected by the underlying field
   public string MyField {
     get {
       return _myField;
     }
     set {
       _myField = value;
     }
   }
}

@Kent points out that Properties are not required to encapsulate fields, they could do a calculation on other fields, or serve other purposes.

@GSS points out that you can also do other logic, such as validation, when a property is accessed, another useful feature.

link|flag
It's worth noting that properties are not required to encapsulate fields. There could be no field at all behind the property. It might be a calculation or return a constant or whatever. – Kent Boogaart Nov 17 '08 at 10:18
vote up 3 vote down

I'll give you a couple examples of using properties that might get the gears turning:

  • "Lazy Initialization." If you have a property of an object that's expensive to load, but isn't accessed all that much in normal runs of the code, you can delay its loading via the property. That way, it's just sitting there, but the first time another module tries to call that property, it checks if the underlying field is null - if it is, it goes ahead and loads it, unknown to the calling module. This can greatly speed up object initialization.
  • Dirty Tracking - Which I actually learned about from my own question here on StackOverflow. When I have a lot of objects which values might have changed during a run, I can use the property to track if they need to be saved back to the database or not. If not a single property of an object has changed, the IsDirty flag won't get tripped, and therefore the saving functionality will skip over it when deciding what needs to get back to the database.
link|flag
vote up 2 vote down

Object orientated programming principles say that, the internal workings of a class should be hidden from the outside world. If you expose a field you're in essence exposing the internal implementation of the class. Therefore we wrap fields with Properties (or methods in Java's case) to give us the ability to change the implementation without breaking code depending on us. Seeing as we can put logic in the Property also allows us to perform validation logic etc if we need it. C# 3 has the possibly confusing notion of autoproperties. This allows us to simply define the Property and the C#3 compiler will generate the private field for us.

public class Person
{
   private string _name;

   public string Name
   {
      get
      {
         return _name;
      }
      set
      {
         _name = value;
      }
   }
   public int Age{get;set;} //AutoProperty generates private field for us
}
link|flag
vote up 2 vote down

An important difference is that interfaces can have properties but not fields. This, to me, underlines that properties should be used to define a class's public interface while fields are meant to be used in the private, internal workings of a class. As a rule I rarely create public fields and similarly I rarely create non-public properties.

link|flag
vote up 1 vote down

Properties support asymmetric access, i.e. you can have either a getter and a setter or just one of the two. Similarly properties support individual accessibility for getter/setter. Fields are always symmetric, i.e. you can always both get and set the value. Exception to this is readonly fields which obviously cannot be set after initialization.

Properties may run for a very long time, have side effects, and may even throw exceptions. Fields are fast, with no side effects, and will never throw exceptions. Due to side effects a property may return a different value for each call (as may be the case for DateTime.Now, i.e. DateTime.Now is not always equal to DateTime.Now). Fields always return the same value.

Fields may be used for out / ref parameters, properties may not. Properties support additional logic – this could be used to implement lazy loading among other things.

Properties support a level of abstraction by encapsulating whatever it means to get/set the value.

Use properties in most / all cases, but try to avoid side effects.

link|flag
Fields may have all the cost issues of properties when the data type of the field is an object with a conversion operator overload - it's a subtle gotcha. – Andy Dent Jan 14 '09 at 0:16
Properties should never have side effects. Even the debugger assumes it can evaluate them safely. – Strilanc Jun 26 at 6:44
@Strilanc: I agree completely, however, that is not always the case. As for the debugger, there are many problems with FuncEval if that is what you're talking about. – Brian Rasmussen Jun 26 at 10:25
vote up 1 vote down

Using Properties, you can throw an event, when the value of the property is changed (aka. PropertyChangedEvent) or before the value is changed to support cancelation.

This is not possible with (direct access to) fields.

public class Person {
 private string _name;

 public event EventHandler NameChanging;     
 public event EventHandler NameChanged;

 public string Name{
  get
  {
     return _name;
  }
  set
  {
     OnNameChanging();
     _name = value;
     OnNameChanged();
  }
 }

 private void OnNameChanging(){
   EventHandler localEvent = NameChanging;
   if (localEvent != null) {
     localEvent(this,EventArgs.Empty);
   }
 }

 private void OnNameChanged(){
   EventHandler localEvent = NameChanged;
   if (localEvent != null) {
     localEvent(this,EventArgs.Empty);
   }
 }
}
link|flag
vote up 0 vote down

Properties encapsulate fields, thus enabling you to perform additional processing on the value to be set or retrieved. It is typically overkill to use properties if you will not be doing any pre- or postprocessing on the field value.

link|flag
no, I always use properties, it allows you the flexibility of changing the implementation at anytime without breaking your API. – Sekhat Nov 17 '08 at 14:39
Regarding API evolution, you can use fields for private data without problems. Also in odd cases where you want to share data within an assembly you can give fields 'internal' access. – Earwicker Nov 17 '08 at 14:59
vote up 0 vote down

Properties have the primary advantage of allowing you to change the way data on an object is accessed without breaking it's public interface. For example, if you need to add extra validation, or to change a stored field into a calculated you can do so easily if you initially exposed the field as a property. If you just exposed a field directly, then you would have to change the public interface of your class to add the new functionality. That change would break existing clients, requiring them to be recompiled before they could use the new version of your code.

If you write a class library designed for wide consumption (like the .NET Framework, which is used by millions of people), that can be a problem. However, if you are writing a class used internally inside a small code base (say <= 50 K lines), it's really not a big deal, because no one would be adversely affected by your changes. In that case it really just comes down to personal preference.

link|flag
vote up 0 vote down

Also, properties allow you to use logic when setting values.

So you can say you only want to set a value to an integer field, if the value is greater than x, otherwise throw an exception.

Really useful feature.

link|flag
vote up 0 vote down

In the background a property is compiled into methods. So a Name property is compiled into get_Name() and set_Name(string value). You can see this if you study the compiled code. So there is a (very) small performance overhead when using them. Normally you will always use a Property if you expose a field to the outside, and you will often use it internally if you need to do validation of the value.

link|flag
vote up 0 vote down

(This should really be a comment, but I can't post a comment, so please excuse if it is not appropriate as a post).

I once worked at a place where the recommended practice was to use public fields instead of properties when the equivalent property def would just have been accessing a field, as in :

get { return _afield; }
set { _afield = value; }

Their reasoning was that the public field could be converted into a property later in future if required. It seemed a little strange to me at the time. Judging by these posts, it looks like not many here would agree either. What might you have said to try to change things ?

Edit : I should add that all of the code base at this place was compiled at the same time, so they might have thought that changing the public interface of classes (by changing a public field to a property) was not a problem.

link|flag
vote up -1 vote down

If you are going to use thread primitives you are forced to use fields. Properties can break your threaded code. Apart from that, what cory said is correct.

link|flag
since when? lock your backing field within the property and it's the equivilant – Sekhat Nov 17 '08 at 14:42
Properties are methods, and are not inlined by any CIL JIT today. If you are going to use thread primitives like Interlocked you need to have fields. Check your sources. Admittedly 'locking' was the wrong word to use. – Jonathan C Dickinson Nov 24 '08 at 7:34

Your Answer

Get an OpenID
or

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