Check out example codes for "get setter c# model". It will help you in understanding the concepts better.
Code Example 1
Person person = new Person();
person.Name = "Joe"; // the set accessor is invoked here
System.Console.Write(person.Name); // the get accessor is invoked here
Learn ReactJs, React Native from akashmittal.com