Sahil Bansal
Can we inherit multiple interfaces in C#?
By Sahil Bansal in C# on Aug 21 2012
  • Logesh Palani
    Mar, 2020 8

    Yah! why not, inherit multiple interface but only one class inherit to base class

    • 0
  • neeru sharma
    Sep, 2012 17

    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#

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS