Can you inherit multiple interfaces?
Answers were Sorted based on User's Feedback
Answer / shiba shankar
Yes we can inherit multiple interface.that's why we are
using interface.We can get by imlementing interface after
making multiple interface.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / 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 |
Answer / 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 |
Answer / pawanreddy
Nope, You can't inherit from interface, you can only implement it. You can implement multiple interfaces in a single class.
You can only inherit from class, c# won't support multiple inheritance.
| Is This Answer Correct ? | 2 Yes | 2 No |
What is a dictionary in c#?
What is asax file in c#?
What is the difference between the debug class and trace class? Documentation looks the same.
What is method overriding in c#
What operators can be used to cast from one reference type to another without the risk of throwing an exception?
Why can?t you specify the accessibility modifier for methods inside the interface?
What is an assembly qualified name
How do I download a program to my desktop?
What operator means?
What is Serialization and how do we implement (in real time scenario)
What is Implementation inheritance and interface inheritance?
Can we inherit a private class in c#?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)