Advertisement
Fhernd

Figura.cs

Nov 25th, 2017
2,366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1. public class Figura
  2. {
  3.     public int X
  4.     {
  5.         get;
  6.         private set;
  7.     }
  8.    
  9.     public int Y
  10.     {
  11.         get;
  12.         private set;
  13.     }
  14.    
  15.     // Método virtual
  16.     public virtual void Dibujar()
  17.     {
  18.         Console.WriteLine ("Tareas de dibujo básico.");
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement