Observer Decorator
Type description and basic instructions.
Description
CalculateResult and OnValueChange
public class ExampleObserverDecorator : ObserverDecorator
{
public override bool CalculateResult()
{
throw new NotImplementedException();
}
public override event Action OnValueChange;
}Last updated