first Console.ReadLine() returns immediately
问题 I am writing a really silly program. I have no idea why the following code won't work: static void Main(string[] args){ <Some silly code> Console.WriteLine("Please choose the lab you are working on:"); int choose = Console.Read(); <Some more silly code, including 1 Console.writeLine() call > Console.WriteLine("Enter the DB server location"); string DBServer = Console.ReadLine(); Console.WriteLine("Enter the DB name"); string DBName = Console.ReadLine(); } When I run the program, it never