I have a (C#) console application which maintains a state. The state can be altered by feeding the application with various input through the console. I need to be able to b
That is happening because of you are using Write("ready") which is will append a string to the text, instead use WriteLine("ready"). that simple :).
Write("ready")
WriteLine("ready")