Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Libreria
  4. {
  5. class Documento
  6. {
  7. protected string autor;
  8. protected string titulo;
  9. protected string ubicacion;
  10. }
  11. }
  12. using System;
  13.  
  14. namespace Libreria
  15. {
  16. class Libro : Documento
  17. {
  18. protected int paginas;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement