Advertisement
Fhernd

Bicicleta.cs

Nov 13th, 2017
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1. class Bicicleta
  2. {
  3.     static int numeroRuedas = 2;
  4.     private string marca;
  5.     private string color;
  6.    
  7.     public Bicicleta(string marca, string color)
  8.     {
  9.         this.marca = marca;
  10.         this.color = color;
  11.     }
  12.    
  13.     // métodos mutadores y de acceso
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement