I want to make a method in a C# program that is overriding an existing virtual method but also keep the method virtual so any class that inherits from it can further extend the method.
Can I use both override and virtual in the method declaration? If so, which order do I put them in?
For example
public override virtual void method()
OR
public virtual override void method()
Thanks