Overriding an abstract method of base class

Posted by jess on Stack Overflow See other posts from Stack Overflow or by jess
Published on 2010-04-11T03:41:30Z Indexed on 2010/04/11 3:53 UTC
Read the original article Hit count: 290

Filed under:
|

Hi,

I have an abstract class with some methods,including an abstract method(Execute()).This method is overridden in child class.Now, an event is raised(somewhere in application),and for this event there is a handler in base class.And,in this handler,I call Execute. Now, the method of chilobject is executed.I am bit confused,how this works under the hood?

© Stack Overflow or respective owner

Related posts about c#

Related posts about oop