About multi level and multiple inheritance how to achieve in
.net ?

Answers were Sorted based on User's Feedback



About multi level and multiple inheritance how to achieve in .net ?..

Answer / 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

About multi level and multiple inheritance how to achieve in .net ?..

Answer / akila

we achive multilevel multiple inheritance in .net as like
java

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More C Sharp Interview Questions

What is Delegate and what is it used for ?

0 Answers   NA,


What are tuples c#?

0 Answers  


Is c# an open source?

0 Answers  


Define Final Class in C#

0 Answers   HCL,


what is master pages how to use it. plase give one example in code vice

1 Answers  






What you mean by delegate in c#?

0 Answers  


Why is main static in c#?

0 Answers  


Explain jagged arrays in c#?

0 Answers  


How many catch blocks can be there for a single try block?

5 Answers   Clover, HCL,


what is difference between destruct or and garbage collection ?

0 Answers   Wipro,


What is the difference between final finally and finalize in c#?

0 Answers  


What is string [] args in c#?

0 Answers  


Categories