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 |
what is entity framework?
What is the use of JIT
If we want to construct our own Garbage collector what are the steps things we have to do?
3 Answers Honeywell, Semantic Space,
How you deploy .NET assemblies
What is difference between html.beginform and ajax.beginform?
What is viewdata?
Can we look at the IL for an assembly?
What is the "helperpage.isajax" property?
What are child actions in ASP.Net MVC?
What is connected scenario? : Entity framework
why DotNetFramework is included in building a software
What are the advantages of razor view engine?