I very much value
code reviews, as long time readers can attest. During these reviews, I have often found myself wondering whether a given line references a field or a property. When reading isolated portions of code, properties can be easily mistaken for fields. Player player = new Player("Someone");String name = player.Name;player.Age = 22;By looking at only the two lines ab
read more »
Be the first to post a Comment!