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 lastindexof c#?

0 Answers  


Why do we need reflection in c#?

0 Answers  


What is ienumerator c#?

0 Answers  


What are properties in C#?

0 Answers   UGC Corporation,


destructor, Dispose, Finalize - How they relate to each other

1 Answers   Synechron,






What is Covariance and contravariance in C#?

0 Answers   HCL,


What is Inheritance in C#?

0 Answers   B-Ways TecnoSoft,


What are different properties provided by Object-oriented systems?

2 Answers  


Is as keyword in c#?

0 Answers  


What is the difference between finally and finalize block?

0 Answers  


Describe the process of “exception handling implementation” in c#?

0 Answers  


Which class comes after the SortedList class?

0 Answers   Siebel,


Categories