What is Overriding?

A process of creating different implementation of a method having a same name as base class, in a derived class. It implements Inheritance.

When we need to provide different implementation than the provide by base class, We define the same method with same signatures in the derived class. Method must be Protected/Protected-Friend/Public for this purpose. (Base class routine can be called by Mybase.Method, base.Method).

Comments

chetanraj said…
http://Profitified.com/ref.php?page=act/ref&invcod=37032

Popular posts from this blog

How do I calculate a MD5 hash from a string?

What is WSDL?