vote up 2 vote down star

Before C# 3.0 we done like this:

class SampleClass
{
   private int field;
   public int Property { get { return this.field } set { this.field = value } }
}

Now we do this:

class SampleClass
{
   public int Property { get; set; }
}

(Look ma! no fields!) Now if I want to customize the Getter or the Setter, the field must be explicit as it was in C#2.0?

flag

As an aside - be very cautious if you are using BinaryFormatter and changing auto-props; it isn't robust: marcgravell.blogspot.com/2009/03/… – Marc Gravell Jun 6 at 22:37

4 Answers

vote up 7 vote down check

Yes, that's the only way. No shortcut for customization (other than access modifiers).

link|flag
vote up 1 vote down

Yeah, the purpose of the automatic properties is provide a means to add customizations in the future, without affecting existing users of the class. This usually means adding a private/protected backing field.

link|flag
Generally, all fields should be private for good encapsulation. If you want subtypes to access the field you should have a public getter and protected setter (or variants thereof) – thecoop Jun 6 at 22:18
vote up 2 vote down

With C# 3.0 and automatic properties, you can still change the access levels:

class SampleClass
{
   public int Property { get; private set; }
}
link|flag
vote up 0 vote down

You also cannot specify readonly fields using automatic properties, nor can you use variable initializers (although I have seen a few suggested language extensions that would allow those).

You can make automatic properties virtual, but that means that any access to the property in the class could call subtype implementations instead.

link|flag

Your Answer

Get an OpenID
or

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