Guest User

Untitled

a guest
Jan 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. class Point
  2. {
  3. public string data;//информационное поле
  4. public Point next;//адресное поле
  5.  
  6. public Point()//конструктор без параметров
  7. {
  8. data = null;
  9. next = null;
  10. }
  11.  
  12. public Point(string d)//конструктор с параметрами
  13. {
  14. data = d;
  15. next = null;
  16. }
  17.  
  18. public override string ToString()
  19. {
  20. return data + " ";
  21. }
  22. }
Add Comment
Please, Sign In to add comment