interface IFirstInterface
interface ISecondInterface
class DemoClass : IFirstInterface, ISecondInterface
Console.WriteLine("Some text..");
public void myOtherMethod()
Console.WriteLine("Some other text...");
public void Main(string[] args)
DemoClass myObj = new DemoClass();