Advertisement
adbeSthlm

ist för getters och setter som i java

Mar 11th, 2020
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1.   public string Name
  2.         {
  3.             get => name;
  4.             set
  5.             {
  6.                 //Validate before accepting it
  7.                 if (!string.IsNullOrEmpty(value))
  8.                 {
  9.                     name = value;
  10.                 }
  11.             }
  12.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement