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