0
Virtual Keyword
Posted by Rajendra Prasad Panchati
on
Friday, February 19, 2010
The keyword virtual is applied to a method declaration to indicate that the method may be overridden in a subclass. If the virtual keyword is not applied and a method is defined in a subclass with the same signature as the one in the parent class, the method in the parent class is hidden by the subclass implementation.
More
Less