What difference B/W virtual method and abstract method in C#.
Please help.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Munesh SharmaPosted May 16, 2016, 1:14 AM
Rahul ChavanPosted May 16, 2016, 12:25 AM
ali tuncerPosted May 15, 2016, 10:31 PM
Abstract method must be overridden in a derived class, virtual method can be overridden in derived class, but it is not a must.