How to set a default value using "short style" properties in VS2008 (Automatic Properties)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T19:39:47Zhttp://stackoverflow.com/feeds/question/206611http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/206611/how-to-set-a-default-value-using-short-style-properties-in-vs2008-automatic-pr4How to set a default value using "short style" properties in VS2008 (Automatic Properties)?Matías2008-10-15T21:39:15Z2009-04-30T13:48:34Z
<p>Hi,</p>
<p>How can I setup a default value to a property defined as follow:</p>
<pre><code>public int MyProperty { get; set; }
</code></pre>
<p>That is using "prop" [tab][tab] in VS2008 (code snippet).</p>
<p>Is it possible without falling back in the "old way"?:</p>
<pre><code>private int myProperty = 0; // default value
public int MyProperty
{
get { return myProperty; }
set { myProperty = value; }
}
</code></pre>
<p>Thanks for your time.
Best regards.</p>
http://stackoverflow.com/questions/206611/how-to-set-a-default-value-using-short-style-properties-in-vs2008-automatic-pr/206615#2066157Answer by Chris Pietschmann for How to set a default value using "short style" properties in VS2008 (Automatic Properties)?Chris Pietschmann2008-10-15T21:40:26Z2008-10-15T21:40:26Z<p>Just set the "default" value within your constructor.</p>
<pre><code>public class Person
{
public Person()
{
this.FirstName = string.Empty;
}
public string FirstName { get; set; }
}
</code></pre>
<p>Also, they're called Automatic Properties.</p>
http://stackoverflow.com/questions/206611/how-to-set-a-default-value-using-short-style-properties-in-vs2008-automatic-pr/206636#2066362Answer by Jon B for How to set a default value using "short style" properties in VS2008 (Automatic Properties)?Jon B2008-10-15T21:46:06Z2008-10-15T21:46:06Z<p>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.</p>
http://stackoverflow.com/questions/206611/how-to-set-a-default-value-using-short-style-properties-in-vs2008-automatic-pr/807007#8070070Answer by Dave for How to set a default value using "short style" properties in VS2008 (Automatic Properties)?Dave2009-04-30T13:48:34Z2009-04-30T13:48:34Z<p>[DefaultValue("MyFirstName")]
public string FirstName { get; set; }</p>