Isn’t there a better looking statement (or way) to keep the console from disappearing than the hackish Console.ReadLine() call. Something that’s more expressive of the purpose of, more orthogonal to, keeping the Console visible ?
Isn’t there a better looking statement (or way) to keep the console from disappearing
Share
If you are still developing application you can run via Ctrl + F5 (Without debugging)
otherwise you can use Console.ReadKey() (same but there is no more option)