Advertisement
Guest User

Untitled

a guest
Sep 25th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. Class School
  2. {
  3. public string studentname;
  4. public string studentID
  5. public string roomname;
  6. public string roomID
  7. }
  8.  
  9. Class School
  10. {
  11. public Student x;
  12. public Room y
  13. }
  14. class Student
  15. {
  16. public string studentname;
  17. public string studentID
  18. }
  19. class Room
  20. {
  21. public string roomname;
  22. public string roomID
  23. }
  24.  
  25. <School>
  26. <studentname>xxx</studentname>
  27. <studentID>yyy</studentID>
  28. <roomname>zzz</roomname>
  29. <roomID>ddd</roomID>
  30. </School>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement