Advertisement
Fhernd

Laptop.cs

Nov 13th, 2017
596
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. class Laptop
  2. {
  3.     public string Marca;
  4.     public string Modelo;
  5.     public string Procesador;
  6.     public double TamanioPantalla;
  7.    
  8.     public Laptop ()
  9.     {
  10.         // ...
  11.     }
  12.    
  13.     public Laptop (string marca, string modelo)
  14.     {
  15.         Marca = marca;
  16.         Modelo = modelo;
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement