About multi level and multiple inheritance how to achieve in
.net ?
Answer Posted / senthil kumar
.net supports directly to the multi level
inheritance.but .net doesnot support the multiple
inheritance directly instead of that we use interface used.
for example,multilevel inheritance
class a
{
-----
-----
-----
}
class b : a
{
-----
-----
-----
}
class c : b
{
----
----
----
}
multiple inheritance - interface
--------------------------------
interface a
{
-----
-----
-----
}
Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
2. What happened when BO object has been called?
What is delegates in c# and uses of delegates?
How do you prevent a class from being inherited?
Can multiple inheritance implemented in c# ?
What is the symbol used for in c#?
Can you see a loop recorder?
Explain partial class in c#?
How to properly clean up excel interop objects?
Can we have two main methods in c#?
What are the 4 pillars of any object oriented programming language?
What is the namespace for the thread class?
Are value types sealed?
What is multiple interface in c#?
What is the major difference between a custom control and user control?
Compare and contrast between the System.Array.CopyTo() and Clone()?