1
Reply

Can we inherit multiple interfaces in C#?

Sahil Bansal

Sahil Bansal

Aug 21, 2012
1.1k
0

    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#

    neeru sharma
    September 17, 2012
    0