public static void DisplayShape()
        {
            var s = new Shape();
             var r = new Rectangle();

             ShapeShifter(r);
        }
 public static void ShapeShifter(Shape s)
 {
     Console.WriteLine(s);
 }