Can you inherit multiple interfaces?
Answer Posted / hitesh sharma
Yup, In Dotnet C# Multiple Inheritence is not allowed so
instead we can use Interfaces which are inheritable..
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
What are circular references? How garbage collection deals with circular references.
what is the difference between a struct and a class in c#?
in the nunit test framework, which attribute must adorn a test class in order for it to be picked up by the nunit gui?
What is a string in c#?
Why generics are used in c#?
What is lazy loading c#?
What is dictionary and hashtable in c#?
Why are strings in c# immutable?
Can I use ReaderWriterLock instead of Monitor.Enter/Exit for Threading?
Is it possible to restrict the scope of a field/method of a class to the classes in the same namespace?
Is it possible to have different access modifiers on the get/set methods of a property in c#?
What is the data provider name to connect to access database?
What is generic in c#?
What is super class in c#?
Can abstract classes be final?