Hi Guys,
I have an interface with several events
I have base class implementing the interface
I have third class extending the base class (let's call it theConcreteClass)
problem: when i do something like: IMyInterface i = new theConcreteClass() and then i subscribe to any of the events (i.someEvent+=some_handler;) the event handlers never invoked because (probably) the event subscription was assigned to the base class and not to the concrete class even though the new() operator created the concrete class.
hope it was clear :)
any suggestions?
thanks,
Adi Barda