Advertisement
recipe

Untitled

Feb 15th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.14 KB | None | 0 0
  1. private string name;
  2. public string Name
  3. {
  4.     get
  5.     {
  6.         return this.name;
  7.     }
  8.     set
  9.     {
  10.         this.name = value;
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement