Rohan  Rathore
Does C# support multiple Inheritance?
By Rohan Rathore in C# on Jun 11 2013
  • Ashu Dhaundiyal
    Oct, 2014 17

    No. It supports only user interfaces.

    • 0
  • Pavan Ramamurthy
    Aug, 2013 29

    No, it can be achieved by using Interface. eg: Interface xyz() { void Add(); } Interface Abc() { void mul(); } public class corner:Abc,xyz { public void Add() { Console.writeline("Added"); } public void mul() { Console.writeline("Multiplied"); } }

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS