public Cell()

in GameOfLife/ViewModel/Cell.cs [8:12]


        public Cell(int age, bool isAlive)
        {
            this.age = age;
            this.isAlive = isAlive;
        }