vote up 1 vote down star

I have a property that is assigned as:

public string propertyA{get;set;}

I want to call a method automatically when this property is set to assign another property in the class. Best way to trigger the call?

flag

72% accept rate

5 Answers

vote up 13 vote down check

You don't have to use that syntax that is just shorthand. If you expand it you can do whatever you like in the setter.

 public string PropertyA
 {
       get { return a; }
       set 
       {
            a = value;
            doStuff(); 
       }
 }
link|flag
vote up 1 vote down

Define the setter.

Inside it either trigger an event or directly assign the other property.

link|flag
vote up 4 vote down

I think you'll have to go back to doing your property the old fashioned way.

private string _PropertyA;

public string propertyA
{
    get
    {
       return _PropertyA;
    }
    set
    {
       _PropertyA=value;
       //Set other parameter
    }
}
link|flag
vote up 2 vote down

Add the backing field manually and provide some code to do what you want in the settor.

private string propertyA;
public string PropertyA
{
    get { return this.propertyA; }
    set
    {
         this.propertyA = value;
         this.propertyB = value + "B";
    }
}
link|flag
vote up 2 vote down

Expand out the property setter and assign the other property.

link|flag

Your Answer

Get an OpenID
or

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