Advertisement
KodingKid

Get and Set in C# - Basic Scripting #31

Jun 29th, 2021
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.12 KB | None | 0 0
  1. class thing
  2. {
  3.     private string thing;
  4.     {
  5.         get { return thing; }
  6.         set { thing = value; }
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement