Interfaces
interface start : IShape
interface method : GetArea double
interface end
interface start : IPolygon IShape
interface method : GetPerimeter double
interface endinterface IShape
{
double GetArea();
}
interface IPolygon : IShape
{
double GetPerimeter();
}Exports
Last updated