using System; namespace Dotmyself { /// /// An abstract class that host the common features of all shapes. /// Author : Hyacinthe MENIET /// abstract class Shape { public String Name; public Shape(String name) { Name = name; } public abstract double Area(); } }