Yes, you can. Read this to find out.
The override method provides a new implementation of an element inherited from the base class. A method overridden by an override declaration is known as an overridden base method. An overridden base method must have the same signature as the override method.
Inside a derived class that has an override method, you can still access the overridden base method with the same name using the base keyword. For example, if you have a virtual method MyMethod () and a method to override a derived class, you can access the virtual method from the derived class by calling:
base.MyMethod ()
source share