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 the difference between viewbag and viewdata in asp.net mvc?
What is mvc entity framework?
What is definingquery in entity framework? : Entity framework
How does servicing work for the .net framework 3.0?
Which approach provides better support for test driven development - asp.net mvc or asp.net webforms?
what is eager loading?
What is ViewData and TempData in ASP.Net MVC?
What is routeconfig.cs in mvc 4?
What symbol would you use to denote, the start of a code block in razor views?
what is scalar property?
explain what does .edmx file contains?
What are differences between entity framework and l2s? : Entity framework
What are the major improvements provided by the common language runtime and the base class libraries? Or what are the major improvements in .net framework 4.0?
mention what is csdl, ssdl and msl sections in an edmx file?
How to update one of my table in database at 4pm every day how it is possible?