1
Reply

Can we inherit multiple interfaces in C#?

Sahil Bansal

Sahil Bansal

12y
1.1k
0
Reply

    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#