{  // finally actually using the interface!
    public static void Main()
    {
        System.Console.WriteLine("Hello Interfaces");
        InterfaceDemo4 demo = new InterfaceDemo4();

        demo.xyz();
    }
 // finally actually using the interface!
 public static void Main()
 {
     System.Console.WriteLine("Hello Interfaces");
       InterfaceDemo4 demo = new InterfaceDemo4();
       demo.xyz();
 }