public static void Main() { MultipleInheritance Obj1 = new MultipleInheritance(); I1 Interface1 = Obj1; Interface1.myMethod(); I2 Interface2 = Obj1; Interface2.myMethod(); Console.ReadLine(); }