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