Does C# support multiple inheritance?

Answers were Sorted based on User's Feedback



Does C# support multiple inheritance?..

Answer / t.prabu

No, C# does not Support multiple inheritance.
It only supports multiple interface.

Is This Answer Correct ?    6 Yes 0 No

Does C# support multiple inheritance?..

Answer / guest

No, use interfaces instead.

Is This Answer Correct ?    4 Yes 0 No

Does C# support multiple inheritance?..

Answer / priya

No, C# doen't not support Multiple inheritance.
But the concept of Multiple inheritance could be
accomplished by Interfaces.

Is This Answer Correct ?    2 Yes 0 No

Does C# support multiple inheritance?..

Answer / neerajtyagi

No, there is no direct way to support multiple inheritance
in C# like C++.

But you can acheive multiple inheritance in C# using
interface.

Is This Answer Correct ?    0 Yes 0 No

Does C# support multiple inheritance?..

Answer / ajay kumar

No, C# does not support multiple inheritance.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What does the keyword virtual mean in the method definition?

1 Answers  


Are tuples immutable c#?

0 Answers  


What is a shared assembly?

0 Answers   Wipro,


Which is faster iqueryable or ienumerable?

0 Answers  


How do you implement multiple inheritance in .NET?

10 Answers   Microsoft,






What is a dynamic assembly?

0 Answers  


Write a console application and implement the ternary operator to decide whether the age a user entered after being prompted is allowed to vote or not(given that only citizens between 18 and 120 years only inclusive can vote). Use exception handling for non-numerical input.

0 Answers  


How many types of variables are there in c#?

0 Answers  


Which collection will you use to store different types of objects collection like... int, employee, student, object etc.

5 Answers   R Systems,


Can a method return multiple values in c#?

0 Answers  


Can a constructor have a return type?

0 Answers  


What are async and await?

0 Answers  


Categories