static void Main(string[] args) { Nesne nesne1 = new Nesne(); nesne1.Ekle(new Gozlemci(nesne1, "G1")); nesne1.Ekle(new Gozlemci(nesne1, "G2")); nesne1.Ekle(new Gozlemci(nesne1, "G3")); nesne1.Ekle(new Gozlemci(nesne1, "G4")); nesne1.NesneDurum = "YeniDurum"; nesne1.Bildir(); Console.ReadKey(); }
public Gozlemci(Nesne nesne, string ad) { this._ad = ad; this.Nesne = nesne; }