Answered Questions

  • Does C# support multiple inheritance?

    Skill/Topic: IntermediateA) YesB) No

    Riki

    • Aug 31st, 2015

    Well, C# does not support multiple inheritance of behaviors or properties but we can inherit types implementing interfaces. And because a class can implement multiple interfaces so we can have multipl...

    nyome san

    • Jan 27th, 2015

    No, C# does not support multiple inheritance.However, you can use interfaces to implement multiple inheritance.