How do you create multiple inheritance in C#?
Answer Posted / mukesh
C# doesnt support multiple inheritance. by using interfaces
to solve that problem. C# supports multilevel inheritance.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Can delegates be used as callbacks?
Explain the different ways a method can be overloaded?
You have got 1 million parking slots. At a time a parking slot can be free or not. To get next slot easily which data structure to implement?
Can int be null in c#?
Explain the clr triggers?
What are object pooling and connection pooling and difference between them?
What is fcl in c#?
In which order the constructor is called for an inherited class?
If a.equals(b) is true then a.gethashcode & b.gethashcode must always return same hash code.
What are the different types of constructors in c#?
Explain the accessibility modifier protected internal?
When should I use static in C#?
Can we inherit a class with private constructor in c#?
What is property in c#?
Explain the process of inheriting a class into another class?