C#.Net multiple inheritance

C#.Net support multiple inheritance, comment.

- No, but we can use interface instead.
- Multiple inheritance is a form of inheritance where two or more classes are inherited by the derived class.
- Multiple inheritance is nor supported in .Net because it is hard to understand.
- It can produce some unpredictable bugs.
- Sometimes it is difficult to debug and understand.
Can private virtual methods be overridden in C#.NET?
C#.NET - Can private virtual methods be overridden in C#.NET? - First of all private methods in the inherited class can't be accessed...
Is is possible to force garbage collector to run? - C#.NET
C#.NET - Is is possible to force garbage collector to run? - we can force garbage collector to run using System.GC.Collect(). ...
Role of data provider in ADO.NET - C#.NET
C#.NET - What is the role of data provider in ADO.NET? - ADO.NET supports the following OLE DB Providers...
Post your comment