Projektdateien hinzufügen.

This commit is contained in:
Kevin Krüger
2022-07-08 15:24:48 +02:00
parent be47a7e74c
commit d25b2cda8e
21 changed files with 874 additions and 0 deletions

View File

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