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
What's the implicit name of the parameter that gets passed into the set method/property of a class?
Can c# inherit multiple classes?
Explain the difference between user control and custom control. Also, explain their use.
Explain different properties of object oriented systems.
What Is A Satellite Assembly?
What is the difference between a constant and a static readonly field?
What is append in c#?
What are the string functions in c#?
What is difference between comparable and comparator?
What is c# most used for?
How do I create multifile assembly?
Explain inheritance in c#?
What is thread.sleep()?
How are methods overloaded?
What is func delegate in c#?