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?
|
|
I have a property that is assigned as:
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?
|
||
|
|
|
|
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.
|
|||
|
|
|
|
Define the setter. Inside it either trigger an event or directly assign the other property. |
||
|
|
|
|
I think you'll have to go back to doing your property the old fashioned way.
|
||
|
|
|
|
Add the backing field manually and provide some code to do what you want in the settor.
|
||
|
|
|
|
Expand out the property setter and assign the other property. |
||
|
|