Can we have a non static member function in a base class to
be override in derived with static modifier?
Answer Posted / kishore.a
We cannot override the non static method with a static
method in derived class.
Because all static members are handled directly by CLR.
Where as non static members are handled by CLR after object
instantiation.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is a games console a computer?
What is orm in c#?
How we convert private assembly into public assembly?
Is boxing an implicit conversion?
What is expression tree in c#?
What is difference between ienumerable and enumerable in c#?
What do you mean by saying a "class is a reference type"?
What is a cshtml file?
What does it mean to override a method?
What is ac callback?
What does public mean in c#?
Explain the Usage of web.config
Define a strong name in .net?
What is an example of delegation?
Where do we use static class in c#?