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 do you initiate a string without escaping each backslash ?
About namespaces ?
Will c# 3.0, vb.net 9.0, atlas, or linq be included in the .net framework 3.0?
about triggers?
How we can call a JavaScript function on the change of a Dropdown List in ASP.Net MVC?
What is objectcontext? : Entity framework
what is MVC pattern?
Why is entity framework used?
Can you set the unlimited length for "maxjsonlength" property in config?
What are advantages of Dependency Injection (DI) in ASP.Net MVC?
What is IL
What is the need of Action Filters in ASP.Net MVC