public void EventSubscriber() { var broadcaster = new Broadcaster(); broadcaster.PriceChanged += PriceChangedWriter; broadcaster.Price = 30; broadcaster.Price = 40; broadcaster.Price = 50; // everytime you the the "Price" field the handler is called }