[Solved] Why does Read interfere with ReadLine? [duplicate]
The first method you are calling is Read which returns one character. But it blocks until you hit the Enter key. From MSDN: The Read method blocks its return while you type input characters; it terminates when you press the Enter key. Then you call ReadLine which returns a line. When you hit the Enter … Read more