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 |
How does .net framework works?
Do you know about the new features in ASP.Net MVC 4 ?
what is minimum requirement for entity framework applications to run?
what is mean by type-safe? Please answer me. Advance thanks.
What does a viewmodel do?
How big is the char ?
What is poco proxy? : Entity framework
what is Thread Priority?
Can we access the web controls in a page pre initialising event?
explain how you can load related entities in ef (entity framework)?
Difference between <connectionstring> and <appsettings>
what is eager loading?