Polymorphism and Method Overriding
|
virtual...override
|
to extend/modify the abstract/virtual implementation
|
virtual...new
|
to explicitly hide an inherited member from a base class
|
virtual..override..new
|
to extend/modify the abstract/virtual implementation
to explicitly hide an inherited member from a base class
|
Method Overwriting
|
If 2 methods with same name at BC & DC. DC method overwrites the BC method.
|