vote up 4 vote down star
2

Hi,

How can I setup a default value to a property defined as follow:

public int MyProperty { get; set; }

That is using "prop" [tab][tab] in VS2008 (code snippet).

Is it possible without falling back in the "old way"?:

private int myProperty = 0; // default value
public int MyProperty
{
    get { return myProperty; }
    set { myProperty = value; }
}

Thanks for your time. Best regards.

flag

As a side note, you don't need to set a property to its normal default value (like int i = 0). That happens automatically when the class is instantiated. – Jon B Oct 15 '08 at 21:44
well, I choose int because was the first thing that came to my mind ... but I wanna set a default value to a property of any class (string, custom class, etc) – Matías Oct 15 '08 at 22:06

3 Answers

vote up 8 vote down check

Just set the "default" value within your constructor.

public class Person
{
   public Person()
   {
       this.FirstName = string.Empty;
   }

   public string FirstName { get; set; }
}

Also, they're called Automatic Properties.

link|flag
FWIW, setting a default value is inefficient if you happen to change the value in any of your constructors. At the company I work for, we actually consider it to be a "code smell" to have a default value because then we have to go and see if it's overwritten in any of the constructors. – David Mitchell Oct 15 '08 at 23:21
thanks david, will keep that in mind – Matías Oct 15 '08 at 23:24
vote up 2 vote down

My preference would be to do things "the old way", rather than init in the constructor. If you later add another constructor you'll have to be sure to call the first one from it, or your properties will be uninitialized.

link|flag
1  
Sure, but calling one of the constructors from all the others is usually what you should be doing anyway. It's a pretty standard pattern: The constructors with fewer parameters pass the default values to the constructor with the most parameters. – Kyralessa Oct 21 '08 at 21:43
vote up 0 vote down

[DefaultValue("MyFirstName")] public string FirstName { get; set; }

link|flag
Doesn't work, but it really ought to be made to. – Simon Nov 20 at 10:23

Your Answer

Get an OpenID
or

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