Пример #1
0
 internal override string Execute(string[] args)
 {
     if (args.Length == 1)
     {
         _gameContext.CurrentGame = _sudoku.LoadFromFile(args[0]);
         return(PrintHelper.PrintMatrix(_gameContext.CurrentGame));
     }
     return(Resources.LoadFromFileCommand_Execute_IncorrectPath);
 }