I'm making a Fahrenheit to Celsius converter (a very simple one, because I'm very new) and when I use Console.ReadKey()
it displays the character the user pressed to the screen. Is there a way to hide the user input?
cki = Console.ReadKey();
There is an overload ReadKey(bool)
which determines whether or not to hide the character. So you want:
cki = Console.ReadKey(true);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With