public TimerImpl()

in GameOfLife/ViewModel/TimerImpl.cs [11:15]


        public TimerImpl()
        {
            timer = new Timer(updateOnceIn);
            timer.Elapsed += TimerOnElapsed;
        }