What is the easiest way in c#, to directly call the virtual method implementation in multiple levels of inheritance? I only know base
for this, but with base
it seems that i not call the virtual method, but an overriden. For example:
- Class A has a virtual method:
public virutal void Do()
- Class B overrides the method:
public override void Do()
- Class C wants to call the implementation in class A.
The inheritance is like this:
class B : A
class C : B
I think this is very easy but i did not get it.
Thank you...