properties
Declare and use read write properties in C# Part 3 – Create an instance of the Person class and set values on the object
So finally we’ll create a new instance of the class inside our Main of the TestPerson class. Then we’ll set some values on the object and then increment the property. Time to run the app! Great work Sherlock!
1 min read
Declare and use read write properties in C#
Declare the backing fields Declare the properties Create an instance of the Person class and set values on the object
1 min read
Declare and use read write properties in C# Part 1 – Declare the backing fields
Let’s continue with our C# programming guide here. This builds on our previous post here on C# classes. First edit the code for the Person class. Remove the constructor that sets the name property and the existing property. Next add the backing fields. Great! Now in the next post we’ll declare the properties.
1 min read
You must be logged in to post a comment.