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 does assert() method do?
1 Answers MCN Solutions, Siebel Systems,
what are generics? Without generics what are the disadvantages in 1.1?
3 Answers HP, iSoft, nTech Solutions,
can i change web.config settings from iis?
1 Answers HCL, ReadySoft, Wipro,
Explain the advantages of asp.net mvc over asp.net?
How do you specify comments using razor syntax?
what is msl?
Does Tempdata hold the data for other request in ASP.Net MVC?
VIEWS WITH SYNTAX AND EXAMPLE IN SQL
Tell me about the internal working of Garbage collector?
Is dapper faster than entity framework?
What is iobjectset? : Entity framework
How would you make a combo-box appear in one column of a DataGrid?