Advertisement
Fhernd

Rectangulo.cs

Nov 25th, 2017
2,422
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.19 KB | None | 0 0
  1. public class Rectangulo : Figura
  2. {
  3.     public override void Dibujar
  4.     {
  5.         base.Dibujar(); // tareas de dibujo básico
  6.         Console.WriteLine ("Dibujo de un rectángulo.");
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement