Can you declare the override method static while the
original method is non-static?
Answers were Sorted based on User's Feedback
Answer / guest
No, you can?t, the signature of the virtual method must
remain the same, only the keyword virtual is changed to
keyword override.
Is This Answer Correct ? | 11 Yes | 0 No |
Answer / kishore.a
To override an method we need to explicitly mention
override keyword in the child class and virtual or abstract
keyword in base class.
Here in this case neither of the keywords are used.Hence it
is not possible..
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / ashish gupta
I don think so...
even static members can not be marked as a virtual,abstract
or override.
Is This Answer Correct ? | 5 Yes | 0 No |
Which of these statements correctly declares a two-dimensional array in c#?
What do you mean by thread safe in c#?
What is difference between gridview and form view?
What happens if a static constructor throws an exception?
Ho we can see assembly information?
What are partial types in c#?
What is a system lock?
Why are there five tracing levels in System.Diagnostics.TraceSwitcher?
What is a collection in c#?
How do I format a string in c#?
Is multilevel inheritance possible in c#?
When should you use generics?