show/hide this revision's text 3 edited tags
show/hide this revision's text 2 better title

How to set a default value using "short style" properties in VS2008 (VS2008)?Automatic Properties)?

show/hide this revision's text 1

How to set a default value using "short style" properties (VS2008)?

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.