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 are the 3 main components of an asp.net mvc application?
What are Action Methods in ASP.NET MVC?
What is Jit compilers?.how many are available in clr
What is the .net framework?
What are the features that are new in .net 2.0
What are bundling & minification features in asp.net mvc 4?
What is serialization in .NET? What are the ways to control serialization?
Explain ASP.NET MVC Identity and Security?
Difference between .NET & J2EE
Why is entity framework used?
What is the use .Glimpse in ASP.Net MVC
What are non action methods in mvc?