Advertisement
Fhernd

Triangulo.cs

Nov 25th, 2017
2,395
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 Triangulo : Figura
  2. {
  3.     public override void Dibujar
  4.     {
  5.         base.Dibujar(); // tareas de dibujo básico
  6.         Console.WriteLine ("Dibujo de un triángulo.");
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement