Home »

Can you declare an override method to be static if the original method is not static?

Question ListCategory: C#.NETCan you declare an override method to be static if the original method is not static?
adamemliy16 author asked 8 years ago
1 Answers
jessica537 author answered 8 years ago

No. The signature of the virtual method must remain the same. (Note: Only the keyword virtual is changed to keyword override)

Please login or Register to Submit Answer