vote up 0 vote down star

is there a way to do this with automatic properties ?

private IList<string> List;
    public IList<String> list
    {
        get { return List.ToList().AsReadOnly(); }
        set { List = value; }
    }
flag

As a side note, you should have a look at the naming guidelines here : msdn.microsoft.com/en-us/library/…. – Thomas Levesque Sep 1 at 9:06

2 Answers

vote up 9 vote down check

No there is not. Automatic properties do little more than wrap simple return and assignment statements around a backing field. The only customization allowed is accessibility. If you want to do anything other than the most basic property, you'll need to use a full property.

link|flag
vote up 0 vote down

try this

private IList List; public IList list { get { return List.ToList().AsReadOnly(); } private set { List = value; } }

link|flag

Your Answer

Get an OpenID
or

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