How to set a default value using "short style" properties in VS2008 (Automatic Properties)? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T19:39:47Z http://stackoverflow.com/feeds/question/206611 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/206611/how-to-set-a-default-value-using-short-style-properties-in-vs2008-automatic-pr 4 How to set a default value using "short style" properties in VS2008 (Automatic Properties)? Matías 2008-10-15T21:39:15Z 2009-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#206615 7 Answer by Chris Pietschmann for How to set a default value using "short style" properties in VS2008 (Automatic Properties)? Chris Pietschmann 2008-10-15T21:40:26Z 2008-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#206636 2 Answer by Jon B for How to set a default value using "short style" properties in VS2008 (Automatic Properties)? Jon B 2008-10-15T21:46:06Z 2008-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#807007 0 Answer by Dave for How to set a default value using "short style" properties in VS2008 (Automatic Properties)? Dave 2009-04-30T13:48:34Z 2009-04-30T13:48:34Z <p>[DefaultValue("MyFirstName")] public string FirstName { get; set; }</p>