what is the difference between virtual and abstract in c#.net?
Prakash Kumar
Virtual methods have an implementation and provide the derived classes with the option of overriding it. Abstract methods do not provide an implementation and forces the derived classes to override the method.