public void RaiseCanExcuteChanged()

in GameOfLife/EmulateExternalLib/DelegateCommand.cs [51:58]


        public void RaiseCanExcuteChanged()
        {
            var handler = CanExecuteChanged;
            if (handler != null)
            {
                handler(this, EventArgs.Empty);
            }
        }