1
Reply

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

Prakash Kumar

Prakash Kumar

Oct 27, 2016
810
1

    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.

    Prakash Kumar
    October 27, 2016
    0