i am trying to figure this exercise. i just started, but i dont understand what do i need to put where ?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ShapesDemo
{
abstract class GeometricFigure
{
int height;
int width;
double area;
/* public GeometricFigure(int Height, int Width)
{
Height = height;
Width = width;
}*/
public int Heigth
{
get { return height; }
set { height = value; }
}
public int Width
{
get { return width; }
set { width = value; }
}
public double area
{
get { return area; }
}
}
static void Main(string[] args)
{
}
}
/* class Rectangle : GeometricFigure
{
public () : base()
{
}
public override ()
{
}
}*/