I have a confusion about the inheriting the virtual property of a method.
Let\'s suppose we have 4 classes: class A, class B, class C and class D. The classes are inheri
Of course you can do it. Virtual method is optional to override so it doesn't matter that you declare it in class A or B. If you dont want to use that method in class A then simply declare in in class B.