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
What is .net core framework?
what is lazy loading in entity framework?
Explain the difference between viewbag and viewdata in mvc?
what is conceptual model?
What are the possible razor view extensions?
What is entity sql? : Entity framework
What is meant by bootstrap in mvc5?
How does servicing work for the .net framework 3.0? If I install the .net framework 3.0, can I get service updates for the .net framework 2.0?
Explain what is the difference between view and partial view?
How to update one of my table in database at 4pm every day how it is possible?
What is the difference between ViewData, ViewBag and TempData?
What is the "helperpage.isajax" property?
How does .net framework works?
What are html helpers in asp.net mvc?
What are Action Filters in ASP.NET MVC and its use?