public string Request() { Console.WriteLine("Enter Command:"); string enteredValue = Console.ReadLine(); Command command = interpreter.InterpretRequest(enteredValue); return(Encoding.UTF8.GetString(command.Run())); }