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
How to put assembly in gac?
Could you explain the difference between func vs action vs predicate?
What is difference between mutable and immutable in c#?
If multiple interfaces are inherited and they have conflicting method names; What will happen ?
Are arraylist faster or arrays?
What is a reference type c#?
Explain the difference between access specifier and access modifier in c#?
Define constructors
What is the difference between static class and abstract class in c#?
Explain how is the dll hell problem solved in .net?
Are c and c# the same thing?
Can we declare private class in c#?
What is cookies c#?
What is the data provider name to connect to access database?
What is generic method in c#?