Files
ObserverPattern/WindowsFormsApp1/OP/ClassObserver.cs
2022-07-08 15:24:48 +02:00

13 lines
255 B
C#

using System.Windows.Forms;
namespace WindowsFormsApp1.OP
{
public class ClassObserver: IObserver<int>
{
public void Update(ISubject<int> subject)
{
MessageBox.Show(subject.GetState().ToString());
}
}
}