Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class Product
  2. {
  3. public string PID{get;set;}
  4. public string Price{get;set;}
  5. }
  6.  
  7. class Computer:Product
  8. {
  9. public string RAM{get;set;}
  10. }
  11.  
  12. class Laptop:Computer
  13. {
  14. public string Touchpad{get;set;}
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement