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 are the 3 main components of an asp.net mvc application?

0 Answers  


What are Action Methods in ASP.NET MVC?

0 Answers  


What is Jit compilers?.how many are available in clr

1 Answers  


What is the .net framework?

0 Answers  


What are the features that are new in .net 2.0

2 Answers   Emphasis,






What are bundling & minification features in asp.net mvc 4?

0 Answers  


What is serialization in .NET? What are the ways to control serialization?

2 Answers  


Explain ASP.NET MVC Identity and Security?

0 Answers  


Difference between .NET & J2EE

1 Answers  


Why is entity framework used?

0 Answers  


What is the use .Glimpse in ASP.Net MVC

0 Answers   B-Ways TecnoSoft,


What are non action methods in mvc?

0 Answers  


Categories