Advertisement
myname0

практикум 15_3

Mar 11th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. class Program
  2. {
  3. class BD
  4. {
  5. class Abonent
  6. {
  7. public string name;
  8. public string phone;
  9. public string tariff;
  10. public Abonent left;
  11. public Abonent right;
  12.  
  13. public Abonent(string name_, string phone_, string tariff_)
  14. {
  15. name = name_;
  16. phone = phone_;
  17. tariff = tariff_;
  18. left = null;
  19. right = null;
  20. }
  21. }
  22.  
  23. public BD
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement