2
Reply

Does C# support multiple Inheritance?

Rohan  Rathore

Rohan Rathore

11y
3.2k
0
Reply

    No. It supports only user interfaces.

    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"); } }