Does C# support multiple inheritance?
Answers were Sorted based on User's Feedback
Answer / t.prabu
No, C# does not Support multiple inheritance.
It only supports multiple interface.
Is This Answer Correct ? | 6 Yes | 0 No |
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 |
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 |
No, C# does not support multiple inheritance.
Is This Answer Correct ? | 0 Yes | 0 No |
Please explain the basic string operations used in c#?
How to find methods of a assembly file (not using ILDASM)?
What are accessors?
How many bytes is an int?
What is the purpose of c#?
Explain Direct CAST vs CType ?
How many static constructors are allowed in a class?
What to implement on my class Finalize or IDisposable
What are the properties of string?
What is eager loading in c#?
What is delegate in c# interview questions?
What is the use of base keyword? Tell me a practical example for base keyword’s usage?