Properties vs. Fields: Need help grasping the uses of Properties over Fields
1) why I would want to use properties instead of fields (especially when it appears I am just adding additional code You should always use properties where possible. They abstract direct access to the field (which is created for you if you don’t create one). Even if the property does nothing other than setting a … Read more