Is it possible to use multipe inheritance in .net



Is it possible to use multipe inheritance in .net..

Answer / kirti

Multiple Inheritance is an ability to inherit from more than one base class i.e. ability of a class to have more than one superclass, by inheriting from different sources and thus combine separately-defined behaviors in a single class. There are two types of multiple inheritance: multiple type/interface inheritance and multiple implementation inheritance. C# & VB.NET supports only multiple type/interface inheritance, i.e.

you can derive an class/interface from multiple interfaces. There is no support for multiple implementation inheritance in .NET. That means a class can only derived from one class.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net Framework Interview Questions

What happens when you encounter a continue statement inside the for loop ?

1 Answers  


How to add 'ASPNET.mdf' file into server explorer in visual studio 2005?

2 Answers  


what is the additional features in 1.1 rather than 1.0

1 Answers  


What is an asynchronous controller in asp.net mvc?

0 Answers  


reading doc file in textbox using .net2005 with c#

3 Answers  






How do you sort a dataset?

2 Answers  


Why to use html.partial in mvc?

0 Answers  


What is the CLR

1 Answers  


what is namespace?

9 Answers   TCS,


js fn to go to the particular page when enter is clicked

1 Answers  


what is conceptual model?

0 Answers   Microsoft,


If Controller is not there in MVC Pattern what happens?

2 Answers  


Categories