Can you declare the override method static while the
original method is non-static?

Answers were Sorted based on User's Feedback



Can you declare the override method static while the original method is non-static?..

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

Can you declare the override method static while the original method is non-static?..

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

Can you declare the override method static while the original method is non-static?..

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

Can you declare the override method static while the original method is non-static?..

Answer / saubhagya

No

Is This Answer Correct ?    3 Yes 0 No

Can you declare the override method static while the original method is non-static?..

Answer / kishore

No we cannot declare ovverride method of static while the
first one is non static..

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Which of these statements correctly declares a two-dimensional array in c#?

0 Answers  


What do you mean by thread safe in c#?

0 Answers  


What is difference between gridview and form view?

0 Answers  


What happens if a static constructor throws an exception?

0 Answers  


Ho we can see assembly information?

0 Answers  


What are partial types in c#?

0 Answers  


What is a system lock?

0 Answers   KEN Group, Wipro,


Why are there five tracing levels in System.Diagnostics.TraceSwitcher?

1 Answers  


What is a collection in c#?

0 Answers  


How do I format a string in c#?

0 Answers  


Is multilevel inheritance possible in c#?

0 Answers  


When should you use generics?

0 Answers  


Categories