Tag: populate

Why I Prefer Initialization Through Constructors

September 18, 2011 00:00

I always prefer initializing my class through the use of a constructor like this:

class Apple
{
    Color color;
    Taste taste;
    List<string> countries;
    public Apple(Color color, Taste taste, List<string> countries)
    {
        this.color = color;
        this.taste = taste;
        this.countries = countries...
Read post