Can you inherit multiple interfaces?
Answer Posted / vikas sv
Yes. Multiple interfaces may be inherited in C#.
Note that when a class and multiple interfaces are to be
inherited, then the class name should be written first,
followed by the names of the interfaces. See code example
below, on how to inherit multiple interfaces in C#.
C# Example
class someclass : parentclass, IInterface1, IInterface2
{
//...Some code in C#
}
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Can we inherit private class in c#?
Why do we use class in c#?
what is the difference between a struct and a class in c#?
Give examples for reference types?
What is COM Interoperability?
What is type keyword in c#?
What is the difference between yield and return?
Can a sealed class be used as a base class?
Why we use get set property in c#?
What is _layout cshtml?
If c# destructors are so different to c++ destructors, why did ms use the same syntax?
What is get set in c#?
What is difference between for and foreach loop in c#?
What is the use of static members with example using c#.net.
Explain namespaces in c#.