Say I have description property in one class:
public string Description
{
get
{
return _description;
}
set
{
_description = value;
RaisePropertyChanged("Description");
}
}
I would like to monitor the change in these value in some other type. How do I wire up?