Showing posts with label Overriding. Show all posts
Showing posts with label Overriding. Show all posts

Overview of inheritance with C# : part 2

Overriding

If we create base class method to virtual and override the method of the derived class, now when we instantiate the base class object to derived class and call the method with respect to the object then method of derived class will be invoked.

Sample Code