Example #1
0
    private static void ExecuteDeleteGameCommand(string[] commandParams)
    {
        string gameName = commandParams[1];
        string password = commandParams[2];

        bool gameDeleted = scoreData.DeleteGame(gameName, password);

        Console.WriteLine(gameDeleted ? "Game deleted" : "Cannot delete game");
    }