Answer Posted / 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 View All Answers
How we can register the Area in ASP.Net MVC?
Explain representational state transfer (rest) in detail?
Mention the core components of .net framework?
How we can add the CSS in ASP.Net MVC?
Why to use Html.Partial in ASP.Net MVC?
What is edm (entity data model)? : Entity framework
what is eager loading?
How can you return string result from Action in ASP.Net MVC?
Explain linq to entities? : Entity framework
What type of filter does outputcacheattribute class represents?
What is razor code?
What is the use .glimpse in mvc?
What is attribute routing in mvc?
Can you explain model, controller and view in mvc?
Can I remove .net framework?