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

If a class is a ref type, how we can pass to a function.

1 Answers   Synechron,


Can main method be final?

0 Answers  


What is the difference between writeline and write in c#?

0 Answers  


What is assembly c#?

0 Answers  


What is the base class in .net from which all the classes are derived from?

0 Answers  






How does dictionary work in c#?

0 Answers  


What is use of list in c#?

0 Answers  


What?s a multicast delegate?

3 Answers  


What is type keyword in c#?

0 Answers  


What is difference between abstraction and encapsulation in c#?

0 Answers  


Can you inherit multiple interfaces?

3 Answers  


what is CLONE() method?

1 Answers  


Categories