Why Are Public Fields No Good, Again?
Today, a developer on my team, relatively new to C# and some of the finer points of OO, asked me to take a look at his code. I saw this: public class Address { public string Street1; public string Street2; public string City; public string State; public string Zip; } How would you react to…
