Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Rectangulo : Figura
- {
- private int ancho;
- private int alto;
- public Rectangulo (int ancho, int alto, string idFigura) : base (idFigura)
- {
- this.ancho = ancho;
- this.alto = alto;
- }
- public override double Area
- {
- get
- {
- return ancho * alto;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement