I have a below code
public bool Notify(bool filterStatus)
{
foreach (IFilterStatusListener listener in listeners)
{
listener.Update(filterStatus);
}
return true;
}
Method Update
recursively calls Notify
for Children
public void Update(bool status)
{
this.isFilteredFixed = false;
this.Notify(status);
this.RaisePropertyChanged("IsFiltered");
}
When I run this code, I get below error
What should I do ?