This may be completely impossible, but I was wondering if there is a way to read values that the console has already printed. For example, if the console printed
If you want to save what you are writing to the console, store it in a String variable first and then print the contents of this variable to the console, like so:
String consoleOutput = "You are travelling north at a speed of 10m/s"
Console.WriteLine(consoleOutput);
That way you can access consoleOutput whenever you want.