I have a property defined with no explicit mention of backing field in a way like this :
//How to fire RaisePropertyChanged("Name") from setter
public string Name { get; set; }
How exactly do I fire a RaisePropertyChanged event in the setter of this property ? I know how to do it when there is a private backing field and with a public property encapsulating it.
Is a multi line setter allowed in this scenario ?