Is it always necessary to follow the sealed
keyword with override
in the signature of a method like the below code:
public sealed override string Method1(){.....}
I mean, if I want to "seal" the method within the base class without overriding, is the override
keyword still necessary?