1
Reply

what is the difference between virtual and abstract in c#.net?

Prakash Kumar

Prakash Kumar

8y
826
1
Reply

    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.