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 is list array in c#?
What is string pool in c#?
What is sqladapter c#?
What is difference between code access and role based security?
Explain About Postback
Explain the difference between class and interface in .net?
What are the uses of delegates in c#?
How can I create a process that is running a supplied native executable (e.g., Cmd.exe)?
What is the advantage of extension method in c#?
What is expression tree in c#?
What is difference between for and foreach loop in c#?
What is the difference between finalize() and dispose() methods?
What is thread life cycle in c#?
Is null empty or whitespace c#?
Does hashset allow duplicates c#?