Guest User

Untitled

a guest
May 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class Book
  2. private string _title;
  3.  
  4. public string Title
  5. {
  6. get{ return _title; }
  7. set{ _title = value; }
  8. }
  9. }
  10.  
  11. public class Book
  12. {
  13. public string Title {get; set;}
  14. }
  15.  
  16. public class Book
  17. {
  18. public string Title;
  19. }
Add Comment
Please, Sign In to add comment